Telerik Forums
UI for ASP.NET AJAX Forum
18 answers
748 views
Hello.
In my Project i have a Grid which has some columns .Some of them are Numeric , but I need enable filtering on this Column.when I Enable ,I find out There is No 'Contains' item in the Filter List.I need to do it.I need Contains for NumericColumns .Is there any way To Enable 'Contains' for this Kind of Columns Or if not, Can I write some codes For This scenario and How?
Offir
Top achievements
Rank 1
 answered on 08 Jan 2015
4 answers
148 views
Hello

Can you help me to understand this field RecurrenceParentID ?

What's context ?  What's sample ?

thanks for your help and happy new year !

Olivier
Boyan Dimitrov
Telerik team
 answered on 08 Jan 2015
1 answer
70 views
I wish to have a separate Pager for RadGrid.
I do not want to use the integrated pager of the RadGrid.

I was trying to implement it with RadDataPager. But it does not seem to work.

Am I trying the right thing?

Is there any other way to do that? 
Pavlina
Telerik team
 answered on 08 Jan 2015
1 answer
86 views
Im having an issue with the RadEditor with modernizr (2.8.3) on the page in IE8 - if the Editors ContentAreaMode is set to "Div" - When I click any of the toolbar buttons 'bold, italic, underline' etc I get an "Unhandled exception at line 10441, column 4"

htmlfile: Invalid argument

the line is...

"do{m.insertBefore(o,o.previousSibling);"

Telerik.Web.UI version 2014.2.618.45
Ianko
Telerik team
 answered on 08 Jan 2015
1 answer
222 views
I have a RadComboBox with the Filter set to "StartsWith" and MarkFirstMatch enabled.  When typing text into the drop down, the items filter based on the text I type but if I tab away from the control the entered text remains in the dropdown with no item selected.  If I remove the Filter the first matching item is selected when I tab away from the control.  I would like this same functionality but with filtering enabled.  I suspect these two bits of functionality don't work together but I have been searching around and haven't found anything definitive.

Attached images shows the items being filtered and the result after tabbing away from the dropdown.
Peter Filipov
Telerik team
 answered on 08 Jan 2015
5 answers
590 views
I see there is a property of the RadMaskedTextBox called RequireCompleteText which will verify the full mask is satisfied. Is there a way to only enable this if a value has been entered? Basically, I want the user to be able to submit the form with either nothing in the field, or the complete text if they decide to enter a value. Right now, an empty field fails the RequireCompleteText validation.
Kostadin
Telerik team
 answered on 08 Jan 2015
2 answers
178 views
Hi..

I have a RadTab Strip with Multipage setup. On 1st tab I have a radgrid and second tab is a google map. The select element is used to set start and end points of the route in the google map..

Using IE11 the select element will not select an option when it is on the multipage. Moving the select element off the multipage and it works fine in IE. Obviously this all works in chrome and firefox. only IE is the issue but need this to work for IE. Moving the select element off the multipage is a last resort but I would like to get this working as it should.

Can anyone tell me why this select element is not working in IE.. thx.. Dave.
 
         <telerik:RadTabStrip ID="RadTabStrip1" AutoPostBack="true" MultiPageID="RadMultiPage1" OnTabClick="RadTabStrip1_TabClick" Skin="Windows7" SelectedIndex="0" runat="server">
<Tabs>
<telerik:RadTab Text="Jobs" Width="200px" Selected="True"></telerik:RadTab>
<telerik:RadTab Text="Route" Value="route" Width="200px"></telerik:RadTab>
</Tabs>
</telerik:RadTabStrip>
<telerik:RadMultiPage ID="RadMultiPage1" runat="server" SelectedIndex="0">
<telerik:RadPageView runat="server" ID="RadPageView1">
</telerik:RadPageView>
<telerik:RadPageView runat="server" ID="RadPageView2" >
<div style="float:left">
<br />
<strong>Start: </strong>
<select id="start" onchange="calcRoute();">
<option value="London">London</option>
<option value="Bristol">Bristol</option>
<option value="Glasgow">Glasgow</option>
<option value="Birmingham">Birmingham</option>
</select>
<strong>End: </strong>
<select id="end" onchange="calcRoute();">
<option value="London">London</option>
<option value="Bristol">Bristol</option>
<option value="Glasgow">Glasgow</option>
<option value="Birmingham">Birmingham</option>
</select>
<br /><br />
</div><div id="test" style="float:left"></div>
<div id="test2" style="float:left"></div>
<div id="map-canvas" style="float:left; width: 950px; height: 500px;"></div>
<div id="directionsPanel" style="float:left;width:950px;height: 100%"></div>
</telerik:RadPageView>
</telerik:RadMultiPage>
Dave
Top achievements
Rank 1
 answered on 08 Jan 2015
1 answer
72 views
I have a Column Series with a label overlay that can be hard to read if the graph range is too large and the amount of a particular column too small. As you can see in the attached image, if the value is $0 then I am not displaying the label at all, otherwise it will show. The problem is this graph range can be very large and some of the column can be very short, leaving the label hanging out above the column.

What I'd like to do is have the text invert colors based on what color it overlays or (probably a much simpler solution) just determine the the height of the column and change the text color manually if it's below a certain height or height percentage.

I understand this is a longshot and the solution is probably far too complicated to even put the effort into implementing so a third option would be adding a background color to just the label.

Any help is appreciated.
Danail Vasilev
Telerik team
 answered on 08 Jan 2015
8 answers
570 views
I have the following code. When clicked on the pencil icon, edit form appears. How to get the value of the Details Table Column into the code behind. Which event(UpdateCommand??) should i use in the code behind?


<
MasterTableView Width="100%" DataKeyNames="ModId" AllowMultiColumnSorting="True" HeaderStyle-Font-Size="14px" HeaderStyle-Font-Bold="true" >                               
<DetailTables>
  <telerik:GridTableView DataKeyNames="ModId" AutoGenerateColumns="false" Width="100%" HeaderStyle-Font-Size="12px" HeaderStyle-Font-Bold="true" HeaderStyle-BackColor="#c0c0c0" AlternatingItemStyle-BackColor="#cccccc" >
  <ParentTableRelation>
  <telerik:GridRelationFields DetailKeyField="ModId" MasterKeyField="ModId" />
                                                                                    </ParentTableRelation>                                        
  <Columns>
    <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn1">
    <HeaderStyle Width="20px" />
    <ItemStyle CssClass="MyImageButton" />
    </telerik:GridEditCommandColumn>
    <telerik:GridBoundColumn SortExpression="IssuedDate" HeaderText="Issued Date" readonly="true" DataField="IssuedDate" ItemStyle-Width="200px">
    </telerik:GridBoundColumn>
Peter
Top achievements
Rank 1
 answered on 08 Jan 2015
5 answers
330 views
I have a JavaScript function that calls mastertable.fireCommand("RebindGrid") on several grids in that main function; however, when the function is called some of the grids refresh (rebind) and some do not?

Code:

function CloseAndRefresh () {

var masterTable1 = $find("<%= radGrid1.ClientID %>").get_masterTableView();
var masterTable2 = $find("<%= radGrid2.ClientID %>").get_masterTableView();

masterTable1.fireCommand("RebindGrid");
masterTable2.fireCommand("RebindGrid");

}

Now, here the radGrid2 data appears to be updated; however, the radGrid1 retains the same data and does not appear to update. One note is that my CloseAndRefresh() function is being called from a RadWindow OnClientClose javascript call. Now, in the RadWindow I am changing the edited item to go from one grid to the other.

Please help!


Steve Holdorf
Michael
Top achievements
Rank 1
 answered on 07 Jan 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?