Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
92 views

Hi Team,

I want to group the fields displayed in the filter with some header(like treeview)

For eg in the following link i want to group first name,home phone,country under the node Contact Details and i want to group the remaining columns similarly.

http://demos.telerik.com/aspnet-ajax/filter/examples/field-editors/defaultcs.aspx

Please help me to implement this.

Thanks in advance.

Regards,

Rajesh D

 

Eyup
Telerik team
 answered on 12 Aug 2016
8 answers
203 views
The web palette mode does not require the user to press an Apply button.  This is what I am looking for.  The HSV and HSB modes require the user to press the apply button.  Can I remove this functionality?  I see an idea where I can hide the apply button using CSS but then the color doesn't get returned by the selected color property. 
Pat
Top achievements
Rank 1
 answered on 12 Aug 2016
1 answer
126 views

When changing the recurrence dropdown from 'Yearly' or 'Monthly' to 'Never' kendo.all.js throws this error:

Uncaught TypeError: Cannot read property 'enable' of undefined

 

I can change from any other value to any other fine, just not to 'Never'

 

Thanks,

Dimitar
Telerik team
 answered on 12 Aug 2016
1 answer
234 views

Hi there,

Can anyone guide me on how to display custom text in RadScheduler AgendaView?

1 Change word "Agenda" on to "Custom Text"

2 Change Column header from "Appointment" to "Custom Text"

3 Change the word "appointment" in  "Are you sure you want to delete this appoinement" to "Custom Text"

Please help. Thank you.

 

 

 

Ivan Danchev
Telerik team
 answered on 12 Aug 2016
1 answer
55 views

Hi, I am trying to export the scheduler to pdf using the exportToPdf method, and on long schedules with paging enabled returns black images after the first page, where the schedule image should be. Does anyone know the cause and solution to this?

The code for when the export occurs looks like this:

            var schedulerPdfSettings = RadScheduler1.ExportSettings.Pdf;           
            schedulerPdfSettings.PageTitle = "some title";
            schedulerPdfSettings.PaperOrientation = ScheduleSessionManager.IsTimelineView ? SchedulerPaperOrientation.Landscape : SchedulerPaperOrientation.Portrait;
            schedulerPdfSettings.AllowPaging = true;
            RadScheduler1.ExportSettings.OpenInNewWindow = true;
            string[] styleSheets = { "../../Content/css/scheduleExport.css" };
            schedulerPdfSettings.StyleSheets = styleSheets;
            RadScheduler1.ExportToPdf();

Veselin Tsvetanov
Telerik team
 answered on 12 Aug 2016
1 answer
48 views

Hi

I have a working treelist on the page and need to add some functionality via buttons so when one is pressed some javascript attempts to find the treelist control using the standard $find(controlname) syntax.  This fails and just returns null.  I have double checked the clientID is correct and when using document.getElementById it returns the element part so I know that is OK.

Other than this the actual control with paging etc works just fine on the page.  

Any suggestions on what might cause this?

Regards

Jon

Jon
Top achievements
Rank 1
 answered on 12 Aug 2016
8 answers
197 views

Hi

Quite tricky one to explain this but it would appear the RADHtmlChart with a Data navigator is plotting the incorrect values.

I set the datasource to a datatable which has 1353 rows. When I hover the Star label it should a tooltip with a note in it. Some work OK but others don't. Please see attached images.

 

I have noticed when I use JavaScript to get the data (instead of the dataitem) the ID column is incorrect it is using "251" and should be using 281. I have attached an image of the data table in excel.

It would appear for the pressureAltitude_129_ParameterNote it is plotting the wrong row in the datatable.

Rick
Top achievements
Rank 1
 answered on 12 Aug 2016
1 answer
389 views

Hi Guys,

I spend lots of time but unable to success to skip the wizard step based on condition. I used differernt techniques but didn't get success kindly guide me. I just want to skip some steps based on certain condition.

Using: 

            function changeActiveIndex(gotoIndex) {
                var wizard = $find("<%= RadWizard1.ClientID %>");
                wizard.set_activeIndex(gotoIndex);
                //wizard.set_activeWizardStep = wizard.get_wizardStepByIndex(2);
            }

Ivan Danchev
Telerik team
 answered on 12 Aug 2016
1 answer
192 views

My RadGrid mark up is like this. 

 <telerik:RadAjaxPanel ID="gridPanel" runat="server" EnableViewState="true">
                <telerik:RadGrid runat="server" ShowGroupPanel="true" PagerStyle-AlwaysVisible="true" MasterTableView-TableLayout="Fixed"  ID="cmhgrid" Skin="Metro" Height="425px"
                    EnableViewState="true" AutoGenerateColumns="false" AllowPaging="true" OnNeedDataSource="cmhgrid_NeedDataSource">
                    <MasterTableView AllowPaging="true" GroupLoadMode="Server" PagerStyle-PageSizes="15" PagerStyle-Mode="NextPrevAndNumeric" TableLayout="Fixed" AllowFilteringByColumn="true"
                        AllowMultiColumnSorting="true" ClientDataKeyNames="SRVC_ORDER_UNIT, ORDER_NUMBER">
                        <Columns>
                            <telerik:GridBoundColumn DataField="SRVC_ORDER_UNIT" HeaderText="Service Order Unit" HeaderStyle-Width="150px" FilterControlWidth="114px"></telerik:GridBoundColumn>
                            <telerik:GridBoundColumn DataField="ORDER_NUMBER" HeaderText="Order Number" HeaderStyle-Width="150px" FilterControlWidth="114px"></telerik:GridBoundColumn>
                            <telerik:GridNumericColumn DataField="MRR" HeaderText="MRR" DataFormatString="{0:c}" HeaderStyle-Width="150px" FilterControlWidth="114px"></telerik:GridNumericColumn>
                            <telerik:GridBoundColumn DataField="BUSINESS_ORG_NAME" HeaderText="Business Organisation Name" HeaderStyle-Width="300px" FilterControlWidth="264px"></telerik:GridBoundColumn>
                            <telerik:GridBoundColumn DataField="FORECAST" HeaderText="Forecast" HeaderStyle-Width="110px" FilterControlWidth="74px" ></telerik:GridBoundColumn>
                            <telerik:GridBoundColumn DataField="TARGET_MONTH" HeaderText="Target" HeaderStyle-Width="110px" FilterControlWidth="74px"></telerik:GridBoundColumn>
                            <telerik:GridBoundColumn DataField="CCM_USR" HeaderText="CCM" HeaderStyle-Width="150px" FilterControlWidth="114px"></telerik:GridBoundColumn>
                            <telerik:GridBoundColumn DataField="CCM_MGR" HeaderText="CCM_MGR" HeaderStyle-Width="150px" FilterControlWidth="114px"></telerik:GridBoundColumn>
                            <telerik:GridBoundColumn DataField="CCM_DIR" HeaderText="CCM_DIR" HeaderStyle-Width="150px" FilterControlWidth="114px" ></telerik:GridBoundColumn>
                        </Columns>
                    </MasterTableView>
                    <ClientSettings EnableRowHoverStyle="true" AllowColumnsReorder="true" ColumnsReorderMethod="Reorder"
                        AllowDragToGroup="true" AllowGroupExpandCollapse="false" AllowColumnHide="true" ReorderColumnsOnClient="false">
                        <Selecting AllowRowSelect="true" />
                        <Scrolling AllowScroll="true" UseStaticHeaders="true" SaveScrollPosition="true" />
                        <Resizing EnableRealTimeResize="true" AllowColumnResize="false" ResizeGridOnColumnResize="true" />
                    </ClientSettings>
                    <GroupingSettings CaseSensitive="false" ShowUnGroupButton="true" />
                </telerik:RadGrid>
            </telerik:RadAjaxPanel>

I'm able to group data, collapse/expand grouping data. But when I click on the "Click here to ungroup"  i.e) small 'x' icon on the grouped column I get a error like this in the below mentioned section.

0x800a138f - JavaScript runtime error: Unable to get property 'get_masterTableView' of undefined or null reference

function onclick(event)
{
$find('cmhgrid').get_masterTableView()._ungroupByExpression('0:0'); return false;__doPostBack('cmhgrid$GroupPanel$ctl04','') //Error occurs here
}

 

I'm unsure why this occurs. The radgrid is present in a simple aspx page without any other controls. And also similar functionality on other pages have been working fine.

Any help would be great. Thanks!

Konstantin Dikov
Telerik team
 answered on 12 Aug 2016
6 answers
161 views

Hello,

 

Is there a way to set the title bar height of the dock, i tried using a custom css class found in another thread but it does not seem to be working. 

Could it be overriden by the Skin set in appConfig?

 .CustomHeight .rdTop .rdLeft,
        .CustomHeight .rdTop .rdRight,
        .CustomHeight .rdTop .rdCenter
        {
            height: 80px;
        }
        /*overwirtes the original line-height of the Dock in order to fit the new titbar height*/
        .CustomHeight .rdTitleBar em
        {
            font: Arial;
            height: 50px;
            font-size: large;
        }

 

Thanks

zx10r
Top achievements
Rank 1
 answered on 11 Aug 2016
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?