Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
250 views
I have a grid with a detail table that needed a custom sort. the custom sort works fine. I created an if-else to do a regular sort on the main table.
preclick:
column A
b
d
a

 When I click on a column in the main table the first time it sorts acending but the sort arrow points down.
column A v
a
b
d

I click again and the OldSortOrder is decsending just like the arrow which makes the NewSortOrder a no sort but the arrow is no pointing up.
column A ^
a
b
d

I click again and the OldSortOrder is ascending, NewSortOrder is descending and so is the grid but now there is no arrow.
column A
d
b
a


Any clues?
Shinu
Top achievements
Rank 2
 answered on 19 Mar 2014
4 answers
163 views
Hi All,

I have an issue in Safari Browser on Widows 7 OS.

Rad Grid rows are overflowing the fixed height when scroll amount is very large.
Here I had attached the screenshot of small scroll and large.
Venelin
Telerik team
 answered on 19 Mar 2014
3 answers
239 views
Hello

I am currently working on a web project that requires the use of RadMenu. 
When the user clicks on RadMenuItem, the Mega Dropdown Menu appears, like this: 
http://demos.telerik.com/aspnet-ajax/menu/examples/megadropdown/defaultvb.aspx?#qsf-demo-source

The menu is located inside a DIV that is 300px wide.  
When the user clicks on the RadMenuItem, I want the Dropdown Menu to open on 100% width of the page.
How can I do this? 

Thank you,
Daniel
Shinu
Top achievements
Rank 2
 answered on 19 Mar 2014
1 answer
104 views
Hello,

Connection Type : OLAP
Additional :configuration panel enabled.
Version : 2014.1.225

There is a defect in pivot grid when clicked on "Summarize by settings" property in zone context menu of an aggregated field it gives a script error. can be recreated in the Telerik OLAP demo aswell (http://demos.telerik.com/aspnet-ajax/pivotgrid/examples/olap/defaultcs.aspx). see the attached screenshots. 

Regards,
Yohan.
Angel Petrov
Telerik team
 answered on 19 Mar 2014
1 answer
79 views
We have the following issue with using Header Context Menu in IE9: 

When checkbox is unchecked to remove a column, the Grid removes two columns (the one
selected, plus the one on the right) as opposed to just the column selected.  After hitting Grid ‘Refresh’ link, all columns are shown correctly.

The problem is observed with both 2013.3.1114.40 and 2014.1.225.40.  Older version 2012.2.912.40 does not have this problem.
 
Please let us know what might be causing this and what we can try to resolve it.


Thank you,
Elena.


Shinu
Top achievements
Rank 2
 answered on 19 Mar 2014
1 answer
77 views
I am using radgrid grouping in this how to set the grouping width  in asp.net
Princy
Top achievements
Rank 2
 answered on 19 Mar 2014
1 answer
203 views
Radgrid GridTemplateColumn RadNumericTextBox  when enter the number addition operation perform the total Amount show in grid footer without Autopostback client side code..
please help me...
Shinu
Top achievements
Rank 2
 answered on 19 Mar 2014
5 answers
344 views
Hi,
     I Want To Print A Grid Data A4 page on Button Click Event.How Can Do It Client Side Or Server Side.

My Grid Code Is:-

<telerik:RadGrid  ID="gv_UnitWiseCashFlow_Report" runat="server"
                                                AllowFilteringByColumn="True"  AllowSorting="True"
                                                ShowGroupPanel="True" AutoGenerateColumns="False" 
                                                ShowStatusBar="true" onneeddatasource="gv_UnitWiseCashFlow_Report_NeedDataSource"  OnItemCreated="gv_UnitWiseCashFlow_Report_ItemCreated"
onexcelexportcellformatting="gv_UnitWiseCashFlow_Report_ExcelExportCellFormatting" >
                                                <ExportSettings IgnorePaging="true" OpenInNewWindow="true">
                                                        <Pdf PageHeight="210mm" PageWidth="297mm" DefaultFontFamily="Arial Unicode MS" PageTopMargin="45mm"
                                                                    BorderStyle="Medium" BorderColor="#666666" PaperSize="A4" >
                                                    </Pdf>                                                       
                                                </ExportSettings>
                                                    <ClientSettings AllowDragToGroup="True" >
                                                        <Scrolling AllowScroll="true" UseStaticHeaders="true"  SaveScrollPosition="true"/>                                                                                   
                                                    </ClientSettings>
                                                    <MasterTableView  AutoGenerateColumns="false" >
                                                    <FilterItemStyle HorizontalAlign="Left" />
                                                        <NoRecordsTemplate>
                                                            <asp:Label ID="lbl_no_record" runat="server" Text="No record exist"></asp:Label>
                                                        </NoRecordsTemplate>
                                                        <Columns>          
                                                                <telerik:GridBoundColumn  DataField="RefNo" DataType="System.String" HeaderText="Unit Ref No" FilterControlAltText="Filter column column" UniqueName="RefNo" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" >                                                                                                                                 
                                                                </telerik:GridBoundColumn>                                                        
                                                                <telerik:GridBoundColumn  DataField="UnitNo" DataType="System.String" HeaderText="Unit No" FilterControlAltText="Filter column column" UniqueName="UnitNo" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left">                                                                                                                                                                                                         
                                                                </telerik:GridBoundColumn>
                                                                 <telerik:GridBoundColumn  DataField="UnitType" DataType="System.String" HeaderText="Unit Type" FilterControlAltText="Filter column column" UniqueName="UnitType" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" >                                                                                                                                 
                                                                </telerik:GridBoundColumn>
                                                                <telerik:GridBoundColumn  DataField="TenantName" DataType="System.String" HeaderText="Tenant Name" FilterControlAltText="Filter column column" UniqueName="TenantName" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" >                                                                                                                                 
                                                                </telerik:GridBoundColumn>   
                                                                 <telerik:GridDateTimeColumn DataField="ContractStartDate" HeaderText="Contract Start Date"  FilterControlAltText="Filter column column" UniqueName="ContractStartDate" PickerType="DatePicker" FilterDateFormat="dd/MM/yyyy" DataFormatString="{0:dd/MM/yyyy}"   ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" ><ItemStyle Width="15%" /> </telerik:GridDateTimeColumn>     
                                                                <telerik:GridDateTimeColumn DataField="ContractEndDate" HeaderText="Contract End Date" FilterControlAltText="Filter column column" UniqueName="ContractEndDate" PickerType="DatePicker" FilterDateFormat="dd/MM/yyyy" DataFormatString="{0:dd/MM/yyyy}" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left"><ItemStyle Width="15%" /></telerik:GridDateTimeColumn>                                                                                                                                                              
                                                                <telerik:GridBoundColumn  DataField="Rent" DataType="System.Decimal" HeaderText="Rent" FilterControlAltText="Filter column column" UniqueName="Rent" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" >                                                                                                                                 
                                                                </telerik:GridBoundColumn>                                                                                                          
                                                                <telerik:GridBoundColumn  DataField="Jan" DataType="System.Decimal" HeaderText="Jan" FilterControlAltText="Filter column column" UniqueName="Jan" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" >                                                                                                                                 
                                                                </telerik:GridBoundColumn>                                                              
                                                                <telerik:GridBoundColumn  DataField="Feb" DataType="System.Decimal" HeaderText="Feb" FilterControlAltText="Filter column column" UniqueName="Feb" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" >                                                                                                                                 
                                                                </telerik:GridBoundColumn>
                                                                 <telerik:GridBoundColumn  DataField="March" DataType="System.Decimal" HeaderText="March" FilterControlAltText="Filter column column" UniqueName="March" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" >                                                                                                                                 
                                                                </telerik:GridBoundColumn>                                                              
                                                                <telerik:GridBoundColumn  DataField="April" DataType="System.Decimal" HeaderText="April" FilterControlAltText="Filter column column" UniqueName="April" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" >                                                                                                                                 
                                                                </telerik:GridBoundColumn>
                                                                 <telerik:GridBoundColumn  DataField="May" DataType="System.Decimal" HeaderText="May" FilterControlAltText="Filter column column" UniqueName="May" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" >                                                                                                                                 
                                                                </telerik:GridBoundColumn>                                                              
                                                                <telerik:GridBoundColumn  DataField="Jun" DataType="System.Decimal" HeaderText="Jun" FilterControlAltText="Filter column column" UniqueName="Jun" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" >                                                                                                                                 
                                                                </telerik:GridBoundColumn>
                                                                 <telerik:GridBoundColumn  DataField="July" DataType="System.Decimal" HeaderText="July" FilterControlAltText="Filter column column" UniqueName="July" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" >                                                                                                                                 
                                                                </telerik:GridBoundColumn>                                                              
                                                                <telerik:GridBoundColumn  DataField="Aug" DataType="System.Decimal" HeaderText="Aug" FilterControlAltText="Filter column column" UniqueName="Aug" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" >                                                                                                                                 
                                                                </telerik:GridBoundColumn>   
                                                                  <telerik:GridBoundColumn  DataField="Sep" DataType="System.Decimal" HeaderText="Sep" FilterControlAltText="Filter column column" UniqueName="Sep" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" >                                                                                                                                 
                                                                </telerik:GridBoundColumn>                                                              
                                                                <telerik:GridBoundColumn  DataField="Oct" DataType="System.Decimal" HeaderText="Oct" FilterControlAltText="Filter column column" UniqueName="Oct" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" >                                                                                                                                 
                                                                </telerik:GridBoundColumn>
                                                                 <telerik:GridBoundColumn  DataField="Nov" DataType="System.Decimal" HeaderText="Nov" FilterControlAltText="Filter column column" UniqueName="Nov" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" >                                                                                                                                 
                                                                </telerik:GridBoundColumn>                                                              
                                                                <telerik:GridBoundColumn  DataField="Dec" DataType="System.Decimal" HeaderText="Dec" FilterControlAltText="Filter column column" UniqueName="Dec" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" >                                                                                                                                 
                                                                </telerik:GridBoundColumn>  
                                                                  <telerik:GridBoundColumn  DataField="Total" DataType="System.Decimal" HeaderText="Total" FilterControlAltText="Filter column column" UniqueName="Total" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left" >                                                                                                                                 
                                                                </telerik:GridBoundColumn>       
                                                                                                                               
                                                    </Columns>                                                   
                                                    </MasterTableView>                                                                                                        
                                            </telerik:RadGrid>
Please Provide Help Full Solution.

Thanks,
Rahul
Princy
Top achievements
Rank 2
 answered on 19 Mar 2014
3 answers
130 views
Hi,

I  am opening a contact form in a LightBox similar to the template demo. The form is a usercontrol inside the LightBox Item Template.
When the form is submitted - how can I keep the LightBox open so I can display a 'sent' message to the user? At present submitting the form closes the LightBox.

Cheers,

Jack 
Princy
Top achievements
Rank 2
 answered on 19 Mar 2014
1 answer
143 views
I'll try to get the week number from RadDatePicker SelectedDate

<telerik:RadDatePicker ID="rdpDatum" width="0" PopupDirection="BottomRight" Runat="server">
 <Calendar UseColumnHeadersAsSelectors="False" UseRowHeadersAsSelectors="False" runat="server" />
 <DateInput style="display:none;" DisplayDateFormat="yyyy-MM-dd" runat="server" />
</telerik:RadDatePicker>

I found examples in the forum threads http://www.telerik.com/forums/radcalendar-weeknumber
But have error, see attached file.
Post is from 2010, tips on how I can get the week number?



Shinu
Top achievements
Rank 2
 answered on 19 Mar 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?