Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
108 views
I am finding serious problems with your controls. I have found two already (how many more are there?) that don't scroll inside a window. The Button control is one and the other is the ColorPicker.This is a serious issue.  IN IE, and yes I'm using IE 11, your Button control is not scrolling and neither is your ColorPicker. I have tried setting the position to relative and it still doesn't work. I am using v.2013.3.1114.40 in VS 2013. I would appreciate any advice you can give to fix this issue.
Bozhidar
Telerik team
 answered on 14 Oct 2014
3 answers
58 views
When compatibility mode for IE11 is turned off, I cannot click on links when in Preview mode.

I have been forced to set it to run under IE10. 

<meta http-equiv="X-UA-Compatible" content="IE=10,chrome=1" />

Is this going to be fixed?
Ianko
Telerik team
 answered on 14 Oct 2014
1 answer
104 views
Here's some layout code on one of my pages:
<telerik:RadPane ID="radPaneMain" runat="server" CssClass="paneMain" OnClientResized="radPaneMain_Resized">
  <asp:MultiView ID="multiViewMain" runat="server">
    <asp:View ID="View1" runat="server">
      <%-- Note: In order for ScrollBars to function, the dimensions of the Panel (Div) have to be explicitly set.
           Since the width of panelMucking can change, we're going to explicitly set the Width in code. The actual
           turning on/off of the scrollbars is handled directly by the 'DrawFlowChartShapes' method --%>
      <asp:Panel ID="panelMucking" runat="server" CssClass="smallText" ScrollBars="None" EnableViewState="false" style="position:relative" />
    </asp:View>
  </asp:MultiView>
</telerik:RadPane>

The only pertinent thing you need to know about the paneMain CSS Class is that:  height: 100%

Shown in the attachments are two screenshots.  The first is the normal, standard appearance.  However, when the flowchart objects get too big to fit in the available space then, in code, I turn the scrollbar(s) of panelMucking on.  The second screenshot shows the problem that occurs however.  Notice how things are shifted to the right and down a little - when I don't want them to be.

Any advice on how to resolve this?

Note: The app will be run exclusively on IE11.

Robert
Vessy
Telerik team
 answered on 14 Oct 2014
1 answer
63 views
I have the following code inside the radEditor, and try to save it.  Upon submitting the HTML, the body onLoad function is stripped from it.  I have attempted to remove all filters, and separately tried disabling the ConvertToXhtml filter.  No options work so far.  Any ideas?

<html>
<head></head>
<body onLoad="if (window.FormChanged){FormChanged()}">
 
</body>
</html>
Ianko
Telerik team
 answered on 14 Oct 2014
1 answer
139 views
I am trying to paste in the following code to the radEditor.  My company uses it for customers to design their own HTML pages.  Upon inserting the following code and saving it, the onLoad event is removed from the HTML.
<html>
<head></head>
<body onLoad="if (window.FormChanged){FormChanged()}">
 
</body>
</html>

What would cause this?  I have tried disabling all the filters with the EditorFilters.None option.  No dice.  I have disabled the ConvertToXhtml filter as well.  Still nothing.

Any help would be appreciated.

Ianko
Telerik team
 answered on 14 Oct 2014
3 answers
30 views
I was wondering if the navigation on the TabStrip demo pages was a TabStip?

I really like that navigation and would like to do the same for a new project that I'm starting.

Is there a demo for that navigation?

Thanks
Dimitar Terziev
Telerik team
 answered on 14 Oct 2014
1 answer
98 views
Hi,

This isn't really a Telerik question...but I'm hoping that that maybe someone reading this forum has already been down this road and can help.  I'm trying to convert our mapping from Infragistics to Telerik.  We have several ESRI shape files that I'm trying to convert to json for use with the telerik mapping control.  I've found the jdal tool ogr2ogr.exe that performs the conversion.  The following command converts the schools.shp shape file to a schools.json file.

ogr2ogr -f "GeoJSON" Schools.json Schools.shp

The problem is that the shape files use a coordinate system other that latitude/longitude...so the conversion outputs a json file with ridiculous numbers for the latitude and longitude.  Apparently, there are supposed to be prj files that accompany the shape files that define the coordinate system used, but those are missing.  The ogr2ogr utility accepts command line parameters to perform coordinate system conversions.  And I have the markup (see below) that allowed the infragistics control to properly interpret the shape file coordinates...so I'm fairly sure it contains the critical information to allow the ogr2ogr utility to perform the conversion.  But so far my efforts to translate the infragistics markup into the appropriate ogr2ogr command line parameters have failed.  I'm hoping that someone with more experience in GIS will be able to help?

<igMap:ShapeFileReader.CoordinateSystem>
  <igMap:CoordinateSystem UnitType="FT" FalseEasting="1312335.958" FalseNorthing="0.0">
    <igMap:CoordinateSystem.Projection>
      <igMap:LambertConformalConic EllipsoidType="GRS1980" CentralMeridian="-120.5"
            StandardParallelNorth="43.0" StandardParallelSouth="45.5" LatitudeOrigin="41.75"/>
    </igMap:CoordinateSystem.Projection>
  </igMap:CoordinateSystem>
</igMap:ShapeFileReader.CoordinateSystem>
Ianko
Telerik team
 answered on 14 Oct 2014
1 answer
88 views
Hi Everyone,

I need to disaply xml data in db in to grid template column linkbutton so when clicked linkbutton it should open a html page with xml data
Please help me with this as soon as possible
Eyup
Telerik team
 answered on 14 Oct 2014
0 answers
225 views
Grid Batch 로 일괄 데이터 저장을 사용하는 중 문제가 발생되었습니다.

GridNumericColumn Column에서 Value값을 변경하여도
원래 Value 값으로 되돌아갑니다. (예를 들어 10 -> 101 로 변경시 10로 되돌아감, 변경 Status도 바뀌지 않음.)

그리고 GridBoundColumn의 경우 각 Cell을 Tab으로 이동시 focus를 잃어버립니다.
Click하여 사용하는 것이 아닌 Tab key 및 화살표 key 이동으로 사용하는데 문제가 있습니다.

다른 방법으로 저 문제를 고칠 수 있는지 궁금합니다.
KIM
Top achievements
Rank 1
 asked on 14 Oct 2014
5 answers
1.7K+ views
I am trying to set the size of the columns on my radgrid to no avail. From reading the documentation and online the following should suffice but it makes no difference whatsoever:

 

 

GridColumn gridCol = radgrdResultDetail.MasterTableView.GetColumn("Description");
 gridCol.HeaderStyle.Width = System.Web.UI.WebControls.Unit.Pixel(500);

 

 

I have put this in the pre_render method like advised but the columns do not change size. Any help would be greatly appreciated.

Micahel

 

Pavlina
Telerik team
 answered on 13 Oct 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?