thx alot for your effort .. i really appreciate that .. another question plz : how can i loop into calendar to find The control in every cell ?
legend_of_zanado
Posts
-
RadiobuttonList and Calendar -
RadiobuttonList and Calendarprotected void Calendar1_DayRender(object sender, DayRenderEventArgs e) { RadioButtonList RBL_Absence = new RadioButtonList(); RBL_Absence.SelectedIndexChanged += new EventHandler(RBL_Absence_SelectedIndexChanged); RBL_Absence.EnableViewState = true; RBL_Absence.AutoPostBack = true; RBL_Absence.ID = "RBL_Absence" + e.Day.Date; RBL_Absence.RepeatDirection = RepeatDirection.Vertical; RBL_Absence.Font.Size = FontUnit.Point(8); DataSet DS_AbsenceType = _Attend.Get_All_AbsenceType(); RBL_Absence.DataSource = DS_AbsenceType; RBL_Absence.DataTextField = "AbsenceType"; RBL_Absence.DataValueField = "AbsenceType_ID"; RBL_Absence.DataBind(); //*********************************************************** e.Cell.Controls.Add(RBL_Absence); e.Cell.HorizontalAlign = HorizontalAlign.Center; }
-
RadiobuttonList and Calendarstill no post back .. i don't know why ????????????? any controls added to the calendar cell doesn't postback .. :( outside the calendar it posts back normally .. but inside it noooooooooo ..
-
RadiobuttonList and Calendari did what u told me .. but still no postback .. :( :( ... i need a solution plz
-
RadiobuttonList and Calendaryes i used ajax but not with the calendar and not with the radiolist
-
RadiobuttonList and Calendarim creating radioButtonList Dynamically & set Autobostback = true then i put a radiobuttonlist i created in every Cell in asp Calendar .. when i choose any item in the radiobuttonlist .. no post back happen :( any solution ?? :(
-
updatepanel inside modalpopupits asyncpostback trigger ..
-
updatepanel inside modalpopupi have 2 dropdownlists in a panel with modalpopupextender .. one of them show the companies and the other shows the branches of this company .. i put the dropdownlist which shows the branches in an updatepanel .. and set the trigger to the company dropdownlist selectedindexchanged .. when i make any change in the company dropdownlist the popup panel disappear .. :( any solutions ??
-
About Calendar Popupwhen i place a calendarPopup control into updatepanel it doesn't work :(
-
plz Help about htmltable :(i have htmltable created dynamically in my page by javascript function.. this table is filled with data .. i wanna access this htmltable data in code behind to send it to the sqlserver .:confused:
-
hide the close button:( i wanna hide the close button in my popup window without fullscreen im using code like that but it doesn't work :( Hyberlink1.Attributes.Add("OnClick", "window.open('Edit_Session.aspx',null, 'titlebar=no,menubar= no');");
-
firing event problem .. Plz HelpThe event is Gridview RowCommand .. I wanna fire this event when the gridview is in the Calendar ..
-
firing event problem .. Plz Helpi mean that i fill my grid view with data by a dataset .. then i add the grid view to a specific date cell for ex. (3-18-2008) .. so the gridview will appear in the calender in the date 3-18-2008..
-
firing event problem .. Plz HelpI have a gridview in my page & a Calendar control .. i bound a gridview to dataset then i add a gridview to a calendar .. after i added a gridview to my calendar no grid view events fire .. why ?? :( plz help me ..
-
dividingselect (5/7) always result 0 .... how can i correct this result ? plz help :(
-
need help in datalisti have 2 DataLists (DataList1 & DataList2) DataList 2 is in the Item Tempalte of DataList 1 .. i wanna Loop in the DataList2 Items .. i mada a ForEach Loop and put it in the DataList2_ItemDataBound it works but it doesn't reach to the last Item .. why ??:(:( :confused: :confused: and when i put the same loop in the button click event it gets all items ..
-
no numbersI want to prevent user from type any numbers in the text box .. in another meaning i want nothing to happen when he clicks any number in the keyboard .. how ? plz help .. :(
-
client side script .. Plz Helpi have a radiobuttonlist on my webform. i'd like to run some client-side javascript that when you click it it puts the value of the option selected into a textbox .
-
Simple Q about multidimension array .. plz Helphow can i get index of specified item in multidimension array ?
-
using directX.sound 4 recording soundPlz help me .. how can i use directX.sound 4 recording sound ..? i wanna any Example or tutorial plzzzzzzzzz .. i haven't used DirectX before :( ..