Here is my scenario
I have two grid and two buttons and layout is as follows
UI :
1. Student_Grid <Student Name, Student ID, Select Checkbox> : Student Info Grid
2. Move Button : Button which will Copy Selected Students from Student_Grid to Notice_Grid
3. Notice_Grid <Student Name, Student ID, some columns, Hobbies_dropdownlist>
4. Submit Button : which will send data to server.
DataTable :
1. Student_data <master>
2. Hobbies_data <master>
3. Student_hobbies <relationship table>
Requirement :
User will select few students from Student_Grid and use Move button to copy those to Notice_Grid where user selects Hobbies (which is different for different students)
Problem:
I am creating datatable in aspx.vb page and then binding that data to Notice_Grid. Problem is, I m not able to populate dropdownlist datasource since, it is dynamic. I tried different ways but didnt find way to assign datasource to dropdownlist/combobox based on studentid. each row could have different list under hobbies column.
Thanks in advance
Note: I am using Radgrid with Batch mode

With reference to the attached image, I would like to adjust the scrollbar to fit in better with the Metro Touch skin.
I do not want to resort to an external plug-in, just make the color or shading more harmonious with the surrounding content.
<div class="foo"> <telerik:RadOrgChart ID="orgCMF" runat="server" DataFieldID="POSC" DataFieldParentID="CPMOS" DataTextField="POSC" DisableDefaultImage="true" OnNodeDataBound="orgCMF_NodeDataBound" Skin="Simple"> <ItemTemplate> <div class="nodeText"> <span>Rank: <%#DataBinder.Eval(Container.DataItem, "Rank")%></span></br> <span>DMOS: <%#DataBinder.Eval(Container.DataItem, "POSC")%></span> <br /> <asp:Label ID="lblAuth" runat="server"/> <br /> <asp:Label ID="lblAuthFem" runat="server" /> <br /> </div> </ItemTemplate> </telerik:RadOrgChart></div>
hi
I have to use the Scheduler in a farsi(persian) website,to change the calendar from georgian to persian I have written the following codes:
System.Globalization.CultureInfo culture = new System.Globalization.CultureInfo("fa-IR");
the result is strange,the dayview & weekview is ok but in the monthview and also in the calendar at the corner of the page(when navigating from current month to next or previuos month ) day conversions are incorrect
I have shown the problems in the picture at the following url
http://upload.iranblog.com/7/1247614585.jpg
can anyone help me chang the calender implemented in aspxScheduler from georgian to persian please??
hi
I need telerik Demo menu in Picture below.
I need simple code page with telerik menu and without every thing in.
thanks
MasterTableView.HierarchyLoadMode = GridChildLoadMode.Client;MasterTableView.HierarchyDefaultExpanded = false;MasterTableView.SelfHierarchySettings.KeyName = "xxx";MasterTableView.SelfHierarchySettings.ParentKeyName = "yyy";ClientSettings.AllowExpandCollapse = true;ClientSettings.AllowColumnsReorder = false;ClientSettings.ReorderColumnsOnClient = true;| Source | Telerik.Web.UI |
| Function | Telerik.Web.UI.GridDataItem get_Item(System.String) |
| Stack | Telerik.Web.UI.GridDataItemCollection.get_Item(String
hierarchicalIndex) Telerik.Web.UI.RadGrid.LoadClientState(Dictionary`2 clientState) System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad) System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) |
| myGrid_ClientState | {"selectedIndexes":[],"reorderedColumns":[],"expandedItems":["1","1","0","0","1","1","0","0","1","1","0","0","0:0_10","0"],"expandedGroupItems":[],"expandedFilterItems":[],"deletedItems":[],"hidedColumns":[],"showedColumns":[],"popUpLocations":{},"draggedItemsIndexes":[]} |
protected override bool LoadClientState(Dictionary<string, object> clientState) { if (clientState.ContainsKey("expandedItems")) clientState["expandedItems"] = new object[] { }; return base.LoadClientState(clientState); }