In my project, on one of the page, the HTML rendered by RadGrid contains three HTML tables (one for header, one for data, and one for footer).
But on another page, the HTML rendered contains only one HTML table.
I can't figure out what settings are affecting the different rendering layout. Please advise.
Thanks!
We are using Telerik grid filters to display configuration dashboard for release management status. I have few Columns i.e Application, environment, location. I want to retain columns parameters after I refresh the browser.
Is there way I can retain the parameters which are coming from the database?
-

Hi Team,
I have a got paging enabled on a Radgrid, and this grid is in a web user control, this grid usercontrol is also in another user control.
when I drop the user control on an ASPX page, it works fine. but when I put grid usercontrol in another usercontrol, initial it was doing a postback and refreshing the whole page, but I bypassed that by add a RadAjaxManagerProxy which handled the AjaxUpdatedControl.
But my issue now, is that once I click on a paging page, it shows the paging page, but it it stops clicking and can't navigate to the rest of the paging page.
Any help would be appreciated
Thanks in Advance.

Hi from France !
In my project i've got problem with this situation :
I've got a radgrid, x columns.
My first column is used for generate my rowSpan.
<telerik:GridBoundColumn UniqueName="idMaille" DataField="idMaille" Display="false"></telerik:GridBoundColumn>
while idMaille is the same, Merge my gridTemplate column : "M0"
i've set Freezecolumn to 2
HTML generate is like this :
Row 1 :
<tr>
<td>FirstColumn(idMaille) not displayed</td>
<td rowspan="2">My Text rowspanned </td>
<td> next column </td>
</tr>
Row 2 :
<tr>
<td>FirstColumn(idMaille) not displayed</td>
<td> next column </td>
</tr>
But because rowspan is set in my 2nd row, my 2nd column is in reality the third !
and when i move scrollbar, javascript set "display:none"
i think this problem can it resolved if we can specify fixed columns (id/property) and generate a css class for reference for javascript.
i'm remember in old project with infragistics, we specify columns who want freeze.
<ClientSettings><Scrolling AllowScroll="true" FrozenColumnsCount="2" UseStaticHeaders="true" /></ClientSettings><MasterTableView HeaderStyle-HorizontalAlign="Center" ShowHeadersWhenNoRecords="False" > <Columns> <telerik:GridBoundColumn UniqueName="idMaille" DataField="idMaille" Display="false"></telerik:GridBoundColumn> <telerik:GridTemplateColumn UniqueName="M0"> <ItemTemplate> <div class="rw0"> test </div> </ItemTemplate> </telerik:GridTemplateColumn> <telerik:GridTemplateColumn UniqueName="M1"> <ItemTemplate> <div class="rw1"> test 1 </div> </ItemTemplate> </telerik:GridTemplateColumn> </Columns> </MasterTableView>

Hi,
Does anyone experience an issue with the menu not triggering the itemclick event.
I have recently had a forced windows 10 major update on my local development PC, but when I started to work on debugging a code, it looks like the item click event is no longer triggering.
I have the below code
AddHandler MainMenu.ItemClick, AddressOf MenuItemSelected
Then have the following eventhandler
Private Sub MenuItemSelected(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadMenuEventArgs)
But on putting a breakpoint, the eventhandler function never get triggered when I clicked on the menu,
Please let me know if I am missing something because this seems to be quite a simple code.
Thank you

Hi
Is there a way to optimize reports results. We are trying to use it in one of our products at ZTABS but when data gets larger, reports get really slow. What to do ? Specially in case of joins in the queries.

I have a rad grid full of keys assigned to an employee, which is populated from an employee selected in a combo box, and that information is pulled in from sql. I have the allow edit column turned on as there is one column that will need updating, the key status. All other columns are hidden when I hit edit. When the edit button is hit, a drop down box appears under the selected row, full of options for the status of the key. One should be selected, and then when update is hit, it should then change the key status in the grid. To do this, I need to pass a parameter, ID, to the update key store procedure I want to use for updating to the database. Each key has an ID, and upon editing a row, the parameter of course needs to be the value of the ID column in that selected row upon editing. How exactly do I implement this? Pictures attached to show what I am working with, things blurred out as necessary. I am working in VB.

I have 2 objects:
Checkbox1
ComboBox1
When the checkbox1 is checked Combobox1 becomes visible="true" and enabled.
I've used the AJAXManager UpdatedControls and this is working perfectly but the issue is that when im trying to use an eventhandler for example "OnIndexChanged" of Combobox1 it never gets fired.
Below is my sample code:
AjaxManager
<telerik:RadAjaxManager runat="server" ID="RadAjaxManager" DefaultLoadingPanelID="RadAjaxLoadingPanel1"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="ComboCompanies"> <UpdatedControls> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="chkCompany"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="ComboCompanies" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManager>

