Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
101 views
Hello rich Telerik Community,

I am into a strange problem, and couldn't find any clue that what's wrong!!

I want to use the drag and drop functionality of rad grid which is very attractive and effective for the experience of my user. The drag and drop function is working for the first item in the grid, but it doesn't work for the following items.

I am getting the error in the console window of my chrome broswer


Uncaught TypeError: Cannot read property 'attributes' of null
b._saveCellAttributes
Telerik.Web.UI.GridTableView.get_dataItems
Telerik.Web.UI.GridSelection._selectRowInternal
Telerik.Web.UI.GridSelection._click
(anonymous function)
b


I noticed that this error pops up when I click on the row. I don't know what is this. I am afraid that I will not be able to isolate the code for this problem, so it would be nice if someone can share their experience if they had this same issue. Any general idea will help me, I can give it a try.

Thanks



Eyup
Telerik team
 answered on 31 Mar 2015
2 answers
59 views
Hello I used your documentation sample to develop a tri-state checkbox filter for boolean fields.
The problem with your sample is that every time a boolean filter is applyed (or cleared) all the other filters are reset.
Is there any way to improve your sample, so that when I clear the boolean filter, it is only removed from the current ones, without clearing all?

Igor
Top achievements
Rank 2
 answered on 31 Mar 2015
3 answers
486 views
Hi, is there a way to get the value column from selected row on radgrid using jquery
This dont work for me using radgrid, its for asp grid. $("table#ctl100_thisGrid tbody td:nth-child(5)").text()
Thanks in advance
Abhay
Top achievements
Rank 1
 answered on 31 Mar 2015
2 answers
117 views
Can anyone spot why the radMenu isn't visible on the site. It works OK on test locally.

http://www.fiddlebitz.co.uk/

Andy
Andy Green
Top achievements
Rank 2
 answered on 31 Mar 2015
1 answer
353 views
How can we remove the space or padding between the items in the multiselect radlistbox ? 
Magdalena
Telerik team
 answered on 31 Mar 2015
9 answers
159 views
Hello,

i try to get all field for my query and set into the filter header zone. 

it is possible ?

thanks !
karn
Top achievements
Rank 1
 answered on 31 Mar 2015
3 answers
406 views
How do I set the RadAutoCompleteBox to display only distinct value for a certain column. In my code snippet below, you could see that there are several "NS" values under "Type" column.

protected void Page_Load(object sender, EventArgs e)
        {
                RadAutoCompleteBox1.DataSource = GetData();
                RadAutoCompleteBox1.DataTextField = "Type";
                RadAutoCompleteBox1.DataValueField = "Type";
        }
  
private static DataTable GetData()
        {
            DataTable dt = new DataTable();
            //Set the datafield name
            DataColumn cl = new DataColumn("status");
            dt.Columns.Add(cl);
            cl = new DataColumn("Item_Code");
            dt.Columns.Add(cl);
            cl = new DataColumn("Item_Desc");
            dt.Columns.Add(cl);
            cl = new DataColumn("Vendor_Name");
            dt.Columns.Add(cl);
            cl = new DataColumn("Uom");
            dt.Columns.Add(cl);
            cl = new DataColumn("Moq");
            dt.Columns.Add(cl);
            cl = new DataColumn("Qty");
            dt.Columns.Add(cl);
            cl = new DataColumn("Cur");
            dt.Columns.Add(cl);
            cl = new DataColumn("Price");
            dt.Columns.Add(cl);
            cl = new DataColumn("Total");
            dt.Columns.Add(cl);
            cl = new DataColumn("Type");
            dt.Columns.Add(cl);
  
  
            //Set the static data for row 1
            DataRow dr = dt.NewRow();
            dr[0] = "";
            dr[1] = "07-11-017";
            dr[2] = "PAPER PUNCHER (3 HOLES)";
            dr[3] = "Internal";
            dr[4] = "PC";
            dr[5] = "1";
            dr[6] = "1";
            dr[7] = "SGD";
            dr[8] = "130.00";
            dr[9] = "130.00";
            dr[10] = "NS";
            dt.Rows.Add(dr);
  
  
            //Set the static data for row 2
            dr = dt.NewRow();
            dr[0] = "";
            dr[1] = "07-09-069";
            dr[2] = "BINDING STRIPS A4 (MULTI-COLOUR) (LOT OF 100/50PC) ";
            dr[3] = "Internal";
            dr[4] = "PC";
            dr[5] = "1";
            dr[6] = "1";
            dr[7] = "SGD";
            dr[8] = "60.00";
            dr[9] = "60.00";
            dr[10] = "NS";
            dt.Rows.Add(dr);
  
            //Set the static data for row 3
            dr = dt.NewRow();
            dr[0] = "";
            dr[1] = "01-38-002";
            dr[2] = "LAMINATING MACHINE A4, LMA400";
            dr[3] = "Internal";
            dr[4] = "PC";
            dr[5] = "1";
            dr[6] = "1";
            dr[7] = "SGD";
            dr[8] = "160.00";
            dr[9] = "160.00";
            dr[10] = "NS";
            dt.Rows.Add(dr);
  
            //Set the static data for row 4
            dr = dt.NewRow();
            dr[0] = "";
            dr[1] = "99-09-901";
            dr[2] = "BOLTED CONNECTOR";
            dr[3] = "Internal";
            dr[4] = "PC";
            dr[5] = "10";
            dr[6] = "10";
            dr[7] = "SGD";
            dr[8] = "1.50";
            dr[9] = "15.00";
            dr[10] = "ST";
            dt.Rows.Add(dr);
  
            //Set the static data for row 5
            dr = dt.NewRow();
            dr[0] = "";
            dr[1] = "99-07-905";
            dr[2] = "GUY STRAIN INSULATOR";
            dr[3] = "Internal";
            dr[4] = "PC";
            dr[5] = "100";
            dr[6] = "100";
            dr[7] = "SGD";
            dr[8] = "1.00";
            dr[9] = "100.00";
            dr[10] = "ST";
            dt.Rows.Add(dr);
  
            //Set the static data for row 6
            dr = dt.NewRow();
            dr[0] = "";
            dr[1] = "99-01-505";
            dr[2] = "HOT LINE CLAMP";
            dr[3] = "Internal";
            dr[4] = "PC";
            dr[5] = "500";
            dr[6] = "500";
            dr[7] = "SGD";
            dr[8] = "2.00";
            dr[9] = "1000.00";
            dr[10] = "ST";
            dt.Rows.Add(dr);
  
            return dt;
        }
Nencho
Telerik team
 answered on 31 Mar 2015
7 answers
238 views
After upgrading to 2014.1.225.40 version i get server error AutoCompleteBox though i am using Method="GetCompanyNames" Path="/mypage.aspx"
Bozhidar
Telerik team
 answered on 31 Mar 2015
3 answers
99 views
Hi,
I have an application, which is currently deployed on a server and is working perfectly fine.  I am trying to provision a new server and have moved the application across.  The issue i am facing is that the modal window that comes up when the application is processing, which states 'Loading' has stopped.

Furthermore, more critical is that the application has finder, which pop-up for user to select a record.  When the user clicks on a record, it should typically take the data from the pop-up window into the base form and close the window. 

In case of the new server i am getting the following Java script error.  "Unable to set property 'value' of undefined or null reference"

As mentioned in my statement above the application works perfectly fine in the current production environment. 

Your inputs and help will be very valuable i have spent  a lot of time reading to find the issue.  But have failed.

It is kind of urgent.
Marin Bratanov
Telerik team
 answered on 31 Mar 2015
2 answers
58 views
Hi,

Does Rad grid have Footers feature?.

Suppose if it is not support, how can we achieve this feature.

Please provide your suggestions.

Regards
Vasu.
daddala
Top achievements
Rank 1
 answered on 31 Mar 2015
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?