Telerik Forums
UI for ASP.NET AJAX Forum
5 answers
97 views
Hi,
I have a filter function like;
RadPivotGrid1.FilterByValue(PivotGridFilterFunction.IsGreaterThan, pivotGridField,
                            RadPivotGrid1.Fields.GetFieldByUniqueName("Butce") as PivotGridAggregateField, "0", true);
RadPivotGrid1.FilterByValue(PivotGridFilterFunction.IsGreaterThan, pivotGridField,
                            RadPivotGrid1.Fields.GetFieldByUniqueName("Fiili") as PivotGridAggregateField, "0", true);
I would like at add And operator so that filter runs as (Butce>0 and Fiili>0).
How can I achieve this.

TIA.

Vasil
Telerik team
 answered on 15 May 2013
3 answers
119 views

Hi,

We've implemented RADSchedular control for our application. Scheduler control running properly in every browser except Internet Explorer 10 (IE 10).
In case of IE 10
1. Scheduler layout is not showing properly. (Please see the attached image - Schedular_IE_10.png)
2. Right click event is now working.

Whereas in Chrome it shows the proper layout. (Schedular_In_Chrome.png)

We've make some changes according to these instructions -

http://www.telerik.com/community/forums/aspnet-ajax/general-discussions/javascript-errors-in-ie10-and-the-site-is-working-fine-in-the-rest-browsers.aspx

http://www.hanselman.com/blog/BugAndFixASPNETFailsToDetectIE10CausingDoPostBackIsUndefinedJavaScriptErrorOrMaintainFF5ScrollbarPosition.aspx

We've followed "SITE-ONLY FIXES", but we are unable to solve the issue.


Development Environment

.NET Framework - 4.0.
Windows 7.
Visual Studio 2010.
Telerik.Web.UI - 2012.1.411.40
Telerik.Web.UI.Skins - 2012.1.411.40

Thanks in advance for your valuable inputs.

Thanking you.

Best Regards,
Pratap

Boyan Dimitrov
Telerik team
 answered on 15 May 2013
3 answers
110 views
Hi,

I am using RADPivotGrid from ASP.NET AJAX Telerik Controls 2013 Q1 Release.
I am trying to attach Grid to an OLAP Cube with ADOMD

<OlapSettings ProviderType="Adomd">
   <AdomdConnectionSettings Cube="XXXXX" DataBase="XX" ConnectionString="Provider=MSOLAP;Data Source=servername;Initial Catalog=xx;User=userid;Password=password">
   </AdomdConnectionSettings>
   </OlapSettings> 


I have set EnableConfigurationPanel="True" and added refrence to Microsoft.AnalysisServices.ADOMDClient . Where do i see OLAP Browser or Hierarchial Field List .There is no field list displayed in configuration panel.

RADPivotGrid has been added to Sharepoint 2010 Visual Web Part.

Please help


Tsvetoslav
Telerik team
 answered on 15 May 2013
2 answers
207 views
Hi

Iam using RadPanelBar menu in our DNN site. We need submenu in Flyout like the image shown below. Can anyone please let us know how to do like the image shown below.

Thanks
salaro
Top achievements
Rank 2
 answered on 15 May 2013
2 answers
133 views
I use this sample and run dynamil Menu for my project

 http://www.telerik.com/help/aspnet-ajax/menu-items-wcf-service.html

but i have many problem.when i use RadMenu for first Time it work correctly.but for second try ,sent noting to WebService by Menu.
1.Does it possible i call  WebService routine every time i click on RadMenu? 

In last Sample RadMenu sent to  WebService a RadMenuItemData  but not RadMenuItem exactly.I want to use template for my menu.for sample add checkbox  control and check it ,if that is necessary.
2.How can i do it ?
mohammad farahani
Top achievements
Rank 1
 answered on 15 May 2013
4 answers
231 views
Hello all
Before I start creating my own code, is there a proper way to lock the user from manualy entering a date & time in the textbox, but forcing them to use the popup pickers?

I have tried Readonly but then I can not use ShowPopupOnFocus="true"
I have tried EnableTyping="false" but then I can not use ShowPopupOnFocus="true"

What I'd like to see is when the user clicks the textbox, the calendar pops up and they can choose a date, then they can click the time button that pops up the time picker and change the time, but they can not type a date or a time into the box.

Any thoughts would be helpfull.
Shinu
Top achievements
Rank 2
 answered on 15 May 2013
1 answer
143 views
Hi,

In the PreRender event of our Radgrid we have a loop to make some rows, one column, editable:
protected void RadGridFailureReportSearch_PreRender(object sender, EventArgs e)
 {
     string strPreviousFailureReportNbr = string.Empty;
 
     foreach (GridItem item in RadGridFailureReportSearch.MasterTableView.Items)
     {
         GridEditableItem editedItem1 = (GridEditableItem)item;
         if (editedItem1.GetDataKeyValue("ID").ToString() != strPreviousFailureReportNbr)
         {
             strPreviousFailureReportNbr = editedItem1.GetDataKeyValue("ID").ToString();
             if (item is GridEditableItem)
             {
                 GridEditableItem editableItem = item as GridDataItem;
                 editableItem.Edit = true;
             }
         }
         else
         {
             if (item is GridEditableItem)
             {
                 GridEditableItem editableItem = item as GridDataItem;
                 editableItem.Edit = false;
             }
         }
     }
     RadGridFailureReportSearch.Rebind();
 }

Having added an Export to Excel button to the grid I notice that the items that were set to Edit = true does not get exported.

I tried the following 
protected void RadGridFailureReportSearch_ItemCommand(object sender, GridCommandEventArgs e)
 {
     if (e.CommandName == RadGrid.ExportToExcelCommandName)
     {
         RadGridFailureReportSearch.ExportSettings.IgnorePaging = true;
         foreach (GridItem item in RadGridFailureReportSearch.MasterTableView.Items)
         {
             if (item is GridEditableItem)
             {
                 GridEditableItem editableItem = item as GridDataItem;
                 editableItem.Edit = false;
             }
         }
// Tried with and without below line
         RadGridFailureReportSearch.Rebind();
     }
 }

But that did not help. It seems that once an item have been editable it can not be exported using the built in export functionality.

Is this really so or is it just ignorance on my part? Any ideas?

Regards,
Hans
Hans
Top achievements
Rank 1
 answered on 15 May 2013
1 answer
99 views
Hey guys,
Could you please help me with this example 
http://www.telerik.com/help/aspnet-ajax/listview-manual-editing.html

how can I update the database using the data table in the example, please reply...
Thanks, 
Rasha
Princy
Top achievements
Rank 2
 answered on 15 May 2013
2 answers
73 views
Is the ribbon bar supported in IE QuirksMode.

On load I get a "not responding due to a long-running script" and my site is non-responsive.

If it isn't supported it would be nice to auto degrade back to the original toolbar as a form of progressive enhancements.



Thanks
Steven
Top achievements
Rank 1
 answered on 15 May 2013
7 answers
454 views
Hello Friends,


I following field in sql database for  IMage_master 

1) Imageid (numeric(18,0))
2) Image_code (nvarchar(100))
3) fullimage (image) -- I store image with 100 kb

I am doing windows application with C# and Sql2008 as backend

I have gridviewcomboboxcolumn with name cmbimage with display member fullimage and value member as image code. Its not sowing image its just showing byte[]. i want to display image in   gridviewcomboboxcolumn  .


Please help me out , if possible with code

With Regards

Ameya Chavan
Muhammad
Top achievements
Rank 2
 answered on 14 May 2013
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?