Telerik Forums
UI for ASP.NET AJAX Forum
3 answers
73 views
Hi,

I have a RADGRID1 with 2 columns: 1.) Dropdownlist 2.) Textbox

The Dropdownlist columns has a dropdownlist with two values a.) Button and b.) Picklist
In the EDIT mode, when the user select "Button" from the dropdownlist, I generate a button and place it next to the TextBox.

Here is what I want:
When the user clicks on this 'Button', I want to open another RADGRID2 as a modal popup(like a lookup) which is bound to some data using SqlDataSource. RADGRID2 will have a Select button and when the user Selects a particular row, I want the entire row contents to be placed into the Textbox of RADGRID1 or atleast get the row values for each column so that I can make use of them in RADGRID1.

Can someone please let me know how to go about this. I am fairly new to all this and I feel utterly helpless.

Thanks,
Srihari.



Iana Tsolova
Telerik team
 answered on 19 Jan 2011
4 answers
172 views
I'm binding this RadGrid client side that has a RadMenu in one of the column. RadMenu's root item shows up fine in the grid but when expanded, child items are hidden under other cells of the grid. I tried playing around with z-index of both RadGrid and RadMenu but no luck.

When the same grid is bound server side, RadMenu within the grid works just fine. It's only when the grid is bound client-side.

Please advice what else I can look into or change? Thanks.
Maria Ilieva
Telerik team
 answered on 19 Jan 2011
5 answers
61 views
Hi

I added following code in Radgrid

<ClientSettings>
                   <ClientEvents OnRowCreated="RowCreated" />
</ClientSettings>


Then

<telerik:RadCodeBlock ID="RadCodeBlock2" runat="server">
 
    <script type="text/javascript">
        function RowCreated(sender, eventArgs) {
            var dataItem = eventArgs.get_gridDataItem();
        }
        
    </script>
 
</telerik:RadCodeBlock>

Its giving me error "Stack Overflow at line.."  on var dataitem Line
Mark Perry
Top achievements
Rank 1
 answered on 19 Jan 2011
1 answer
104 views
Hi,

I have a rad grid bind to a datasource with all the SQL operations(select,insert,update,delete). Everything works fine. Now I had add on the Grid Insert_Command event (for new record insertion) a check where it compares the new insert value with the existing values of the grid. If the new value entered already exists, I exit the function and display a message on the screen. My problem is that the grid continues and execute the insert command which is declare on the datasource. How can I prevent the automatic insert operation to be executed on demand

Thanks
George
Top achievements
Rank 1
 answered on 19 Jan 2011
6 answers
143 views
I have created a web page in which I placed a rad editor and when I uploaded an image from the image manager then in rad editor it uploaded the image but when I save it and send an outlook email then it donot show the image in the email. The code which I wrote in aspx page is 

 

<script type="text/javascript">

 

 

function OnClientLoad(editor) {

 

 

var body = editor.get_document().body;

 

body.setAttribute(

"unselectable", "off");

 

}

 

 

</script>

 

<

 

telerik:RadEditor ID="reMessage" runat="server" OnClientLoad="OnClientLoad" NewLineBr="false" >

 

 

<Content></Content>

 

 

<ImageManager UploadPaths="~/Images" DeletePaths="~/Images" ViewPaths="~/Images" />

 

 

<TemplateManager UploadPaths="~/Templates" DeletePaths="~/Templates" ViewPaths="~/Templates" />

 

 

</telerik:RadEditor>

 

 And The code on aspx.cs page for sending email is

 

SmtpClient Client = new SmtpClient();

 

 

MailMessage mail = new MailMessage();

 

mail.Body =reMessage.Content;
Client.Send(mail);

I am attaching screenshot for this so that it will be more clear what is the problem I am facing.Can you please tell me some solution to fix this problem.

 

Rumen
Telerik team
 answered on 19 Jan 2011
2 answers
118 views
I have a jquery control that requires the width of the image to be outputted.  Currently - radbinaryimage displays the height/width in a style like so:
style="height:33px;width:50px;".  Is there anyway to have it output the width like a normal control
<img id="Photos1_lvPhotoSliderList_rbiPhotosList_9" src="Telerik.Web.UI.WebResource.axd?imgid=2003722f26874665b53a5b8d4f150506&amp;type=rbi" alt="6"  height="33px" width="50px" />
WebGeek
Top achievements
Rank 1
 answered on 19 Jan 2011
2 answers
115 views
I am working with the nopCommerce 1.90 build and am doing significant modification to include new functionality.  One item I am trying to accomplish is the use of Telerik controls within the nopCommerce framework and I am running into issues with multiple ScriptManager's on the same page (nopCommerce has one on some pages along with a RadScriptManager that I have put on the related Master page.

Before I get into a lot of trial and error changes, I would like to ask:

(1) Do you have direct experience with using Telerik controls in the nopCommerce system?
(2) If I have Telerik controls on the Master Page, and the nopCommerce content page has an ajaxToolkit:ToolkitScriptManager in conjunction with an ajaxToolkit:TabContainer and ajaxToolkit:TabPanel contained on it, how do I reconcile this?  Will the presence of the RadScriptManager be sufficient for the ajaxToolkit components?
(3) Would the ajaxToolkit:ToolkitScriptManager work in place of the Telerik RadScriptManager?
(4) Or do I need to (through significant re-coding) modify the nopCommerce application code to eliminate the use of the ajaxToolkit controls altogether?  Obviously, this would be the least attractive option.

Your thoughts, direction, and/or suggestions would be most appreciated!

Thanks in advance!

Lynn
Lynn
Top achievements
Rank 2
 answered on 19 Jan 2011
1 answer
132 views
I got a problem with the following situation.

I have 2 raddockzones and 1 raddock in the first zone. 
I can not drag this to the other zone on my ipad or iphone because it will look around on the page.

Are there any solutions for this issue. Because i want to create an application that will also work on the ipad.

Regards,
Sander
Pero
Telerik team
 answered on 19 Jan 2011
1 answer
122 views
Hi all,

I am trying to get my head around this problem and was hoping to be given some guidance on where to start. The easiest way to envision my desired end result is this: An entire specified area is a dock zone. Splitters can be placed onto that dock zone to subdivide it. The user is able to drag-and-drop a dock onto the dock zone and have the dock autofill the area until it hits a splitter. So, for instance, if there was one splitter dividing the upper and lower halves of the dock zone, and then two vertical splitters dividing the upper and lower halves. In this way we would have 4 quadrants and a dock would be able to dock in any of these quadrants.

Now, I believe this is not possible with one dock zone (correct me if I'm wrong!). So, I believe I need to be dynamically adding a dock zone with every splitter. When the first splitter is added (to divide upper/lower), the original dock zone would shrink to half its original height, the splitter would be added to the middle, and the new dock zone would fill the lower half. 

Is this about right? Do I just drop a Rad Splitter onto a page, then add a Rad Pane with a Rad Dock Zone on it to the splitter, and resize accordingly?

Sean
Dobromir
Telerik team
 answered on 19 Jan 2011
1 answer
84 views
I have placed my grid inside a tooltip and this all is in another grid but the problem is that for the first row of my parent grid the tooltip is same as for the last row. I don't know why this problem occurs.

Grid is inside a tooltip
    <ItemTemplate>
                <asp:Label ID="lblJobStatus" runat="server" Text='<%# FF_JobState.GetJobStateSummary(Container.DataItem) %>' />
                <div id="divJobStatus" class="tooltip">
                    <telerik:RadToolTip ID="RadToolTipJobStatus" runat="server" CssClass="tooltipBackColor"
                        TargetControlID="lblJobStatus" RelativeTo="Element" HideDelay="3000" HideEvent="LeaveTargetAndToolTip"
                        ShowCallout="true" Position="TopRight" Width="350px" Height="200px">
                        <asp:GridView ID="gvJobStates" runat="server" AutoGenerateColumns="False" ShowHeader="False" CssClass="gridviewSpacing gvJobStates"
                            Width="300px">
                            <Columns>
                            <asp:BoundField HeaderText="JobState ID" DataField="ID" ReadOnly="true" Visible="false" />
                                <asp:BoundField HeaderText="Job ID" DataField="JobID" ReadOnly="true" Visible="false" />
                                <asp:TemplateField SortExpression="JobStateName">
                                    <ItemTemplate>
                                        <asp:Label ID="lblJobStateName" runat="server" Text='<%# Eval("JobStateName") %>'
                                            Font-Bold='<%# Eval("IsCompleted")%>' />
                                        <asp:HiddenField ID="hidJobStateKey" runat="server" Value='<%# Eval("ID")%>' />
                                    </ItemTemplate>
                                    <ItemStyle Width="200px" />
                                </asp:TemplateField>
                                <asp:TemplateField>
                                    <ItemTemplate>
                                        <asp:CheckBox ID="cbIsCompleted" runat="server" AutoPostBack="true" OnCheckedChanged="cbIsCompleted_CheckedChanged"
                                            Checked='<%# Eval("IsCompleted")%>' ValidationGroup='<%# Eval("ID")%>' />
                                    </ItemTemplate>
                                    <ItemStyle Width="80px" />
                                </asp:TemplateField>
                            </Columns>
                        </asp:GridView>
                    </telerik:RadToolTip>
                </div>
                <asp:HiddenField ID="hidIsCompleted" Value='<%# Eval("IsCompleted")%>' runat="server" />
                <asp:HiddenField ID="hidIsCancelled" Value='<%# Eval("IsCancelled")%>' runat="server" />
            </ItemTemplate>
        
Svetlina Anati
Telerik team
 answered on 19 Jan 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?