rcbFCCScope.Text = "Singapore - SGD - 1.500";
But I don't see any data in combo box text.
Please let me what should i do.
Alex
I'm looking for any suggestions on how to display multiple DataTables from a single DataSet. The application allows the user to create a query that extracts data from multiple source DBMS throughout the world. Each source may have different columns but will contain roughly the same kind of data.
Clearly one way to present the data is in a tabbed paged with one grid per page, but my client is concerned that she won't be able to see all the data at one time. A second approach is to "pop-up" multiple windows, each with its own grid, but then the screen becomes cluttered especially if she wants to research multiple queries at the same time.
A "hierarchical" view with the parent being a summary statement (i.e. Source, Record Count, Message) and the child is a grid displaying the DataTable results from that source. But most (if not all) hierarchical grids assume each child is the same format.
To add more complexity to the problem the aplication allows new sources bringing new child grid with its own columns to be dynamically created (and included in the resulting DataSet) so the display cannot reasonably use static templates. That is the number child grids and the format of each child grid varies with each query.
I'm usign the RadGrid code below and everything works great, but I would like the edit columns to appear over the visible columns similar to to when I use a grid with AutoGenerated columns. Current it opens displays edit fields below the row itself.
Is this possible? Thanks.
<
telerik:RadGrid ID="RadGrid1" Width="97%" AllowSorting="True"
AllowAutomaticInserts="true" AllowAutomaticUpdates="true" AllowAutomaticDeletes="true"
PageSize="7" AllowPaging="True" GridLines="None" runat="server" Skin="Vista"
ShowFooter="True">
<PagerStyle Mode="NextPrevAndNumeric" />
<MasterTableView Width="100%" GridLines="None" CommandItemDisplay="TopAndBottom"
HorizontalAlign="NotSet" DataKeyNames="Id"
AutoGenerateColumns="false" InsertItemDisplay="Top" InsertItemPageIndexAction="ShowItemOnFirstPage">
<Columns>
<telerik:GridEditCommandColumn>
</telerik:GridEditCommandColumn>
<telerik:GridBoundColumn DataField="ID" UniqueName="Id" ReadOnly="true" Visible="false">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="SlotTime" UniqueName="SlotTime" HeaderText="Slot Time">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="TableTop" UniqueName="TableTop" HeaderText="Table Top">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Slots" UniqueName="Slots" HeaderText="Slots">
</telerik:GridBoundColumn>
</Columns>
<CommandItemSettings AddNewRecordText="Add new record" AddNewRecordImageUrl="Images/AddRecord.gif" RefreshText="Refresh" RefreshImageUrl="Images/Refresh.gif" />
</MasterTableView>
</
telerik:RadGrid>
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. |
|