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

Hi,

I've looked around and tried the Style Builder as well but can't find what I'm looking for, which is the CSS to make the bottom border on the Bootstrap Tab Strip Skin extend all the way to the right instead of stooping after the last tab.

All help appreciated.

Cheers,

J

 

 

Ivan Zhekov
Telerik team
 answered on 23 May 2016
2 answers
263 views

Hi,

I have a Radgrid within a dataform. When the user click edit on the Dataform I can get the Radgrid to display in Batch edit mode.

But on pressing the Update button on the Dataform, how do I get the values of the edited grid in code behind.

I already use the _ItemUpdating event for the Dataform, and thought I would be able to see the values of the edited grid with EditItems

But it seems not.

Many Thanks for any help

Mark

Eyup
Telerik team
 answered on 23 May 2016
7 answers
631 views
Is it possible to create an editable combo box, where the user can either select from the list, or type in any text at all (even if it is not in the list)?

If not, can be added in a future version?

Ivan Zhekov
Telerik team
 answered on 23 May 2016
1 answer
135 views

Hello,

Does anyone know of a way I can make all my Edit buttons in RadGrid larger? Currently, the 'Telerik' skin has an edit button which is 12 x 12 px, which is difficult to click. Is there a skin that uses bigger edit buttons (so far all the ones I've seen use the same small edit buttons). Alternatively, is there a way I can set my own edit button globally, without having to manipulate each and every GridEditCommandColumn?

Eyup
Telerik team
 answered on 23 May 2016
7 answers
333 views
Hi,
    We have an issue for GooleLike Filtering, we have a GoogleLike Filtering when we type special charcters like %,[,],<,> ...etc then the GoogleLike Filtering is not working. I drilled down to deep and found that when we pass normal text to column then the FilterExpression is getting formed as needed and Filtering working as desired, But When we pass and the text  with some special characetrs then FilterExpression is not getting formed and the grid filetring is not working.


Thanks,
Sanjeev
Eyup
Telerik team
 answered on 23 May 2016
4 answers
766 views
Hello,
I have a RadTreeView with several levels of nodes. I define a name of a node and after click on a button I need to show a node with this name. I know how select the node and expand parent nodes but I do not succeed to scroll to the selected node . I checked many examples by Google and in this forum but all they do not work. Particularly, example from Help does not work:
function ScrollNode()
{
   var tree = $find("<%= RadTreeView1.ClientID %>");
   var node = tree.findNodeByText("My Node");
   if(node)
   {
       node.scrollIntoView();
   }


So I really need a working example of this operation (preferably, in the client side).
Evgeny
Amir
Top achievements
Rank 1
 answered on 21 May 2016
1 answer
188 views

Hi , 

      I am trying to replicate  the example in following demo:

    https://demos.telerik.com/aspnet-mvc/grid/filter-multi-checkboxes

    I need to include search box in checkbox filtering ,like one already done on Product Name column in the demo above. However i am unable to add .Search(true) to Filterable method in kendo grid . I am getting error as search is not a member of commandbuilder.

 Can you please suggest me what am i missing. As it is very urgent. Help would be appreciated. Following is my complete view.

@modeltype List(Of Display_Data.ServiceReference1.Empolyee)
@imports Display_Data.Empolyee
@imports Kendo.Mvc.UI

<link href="~/Content/kendo/2016.1.412/kendo.default.min.css" rel="stylesheet" />
<link href="~/Content/kendo/2016.1.412/kendo.common.min.css" rel="stylesheet" />

<script src="//kendo.cdn.telerik.com/2016.2.504/js/jquery.min.js"></script>
<script src="//kendo.cdn.telerik.com/2016.2.504/js/kendo.all.min.js"></script>
@code
    Html.Kendo().Grid(Of Display_Data.Empolyee)() _
        .Name("grid") _
         .Pageable() _
         .Editable(Function(m) m.Mode(GridEditMode.PopUp)) _
 .Filterable() _
 .Sortable() _
     .Columns(Sub(c)
                      c.Bound(Function(p) p.Name)
                      c.Bound(Function(p) p.Age)
                      c.Bound(Function(p) p.City).Filterable(Function(f) f.Multi(True).Search(True))
                      c.Bound(Function(p) p.Expertise)
                    
              End Sub) _
     .DataSource(Sub(d)
                         d.Ajax() _
                         .Create(Function(read) read.Action("UpdateData", "Student")) _
                     .Update(Function(read) read.Action("UpdateData", "Student")) _
                     .Read(Function(read) read.Action("Display", "Student")).Model(Sub(m)
                                                                                           m.Id(Function(i) i.Expertise)
                                                                                   End Sub).ServerOperation(False)

                 End Sub) _
.Render()
End code



 

Rohit
Top achievements
Rank 1
 answered on 21 May 2016
3 answers
41 views

I have a support ticket going for this but having 24 hours go by for every response is pretty slow.  I upgraded to the latest with the Telerik Control Panel and now no tool box items.  I have followed all instructions for removing tbd files and even registry entries, but no luck.  I even uninstalled and went back a version and still can't get tool box items.

 

Any one else had this problem?  Any real fixes besides the usual instructions, which are not working for me?

thanks

Dyanko
Telerik team
 answered on 20 May 2016
18 answers
753 views
Telerik Support,

I have a RadGrid in Edit mode. The RadGrid has several GridTemplateColumn columns containing both RadComboBox and RadTextBox controls.

On the OnClientSelectedIndexChanged event of the RadComboBox column, I need to interact with the RadTextBox and RadComboBox controls in the other GridTemplateColumn(s) on the current RadGrid row. To accomplish this I will need the IndexID of the RadGrid row containing the RadComboBox control that the user changed the value of. However, I cannot find a good way to discover the row's IndexID inside the OnClicentSelectedIndexChanged event.

Can you suggest a possible solution for this challenge?

Please note that my business requirements state the solution must be entirely client-side (no AJAX postbacks).

Thanks in advance for your help,
Wes
Maria Ilieva
Telerik team
 answered on 20 May 2016
3 answers
69 views

 

Hi

Telerik Team,

 

Please find attached screen shot,
As per given screen shot you can see the value of  XAxis witch shows the Name[ID] format, Both Name and Id are used to perform drill operation, I have set this values using `DataLabelsField`

Now what I want to do is,I just want to show Name not ID,Is there any way to show only Label not Id i.e  Is there any provision to set value like DataValueField to set Value(Id) and DataLabelField to set Label(Name).
(DataValueField is just imaginary name)

So that this Id field will be used to perform drill operation. but User can not able to see it.


Thanks

Rahul
Top achievements
Rank 1
 answered on 20 May 2016
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?