Telerik Forums
UI for ASP.NET AJAX Forum
0 answers
89 views

Hi,

We are using telerik Rad Ajax Controls for our website, Technologies, ASP.NET, C#.  We are using Visual Studio 2010 and framework 4.0 for our web application development. 

Scenario is as follows,

                We have .aspx page for showing personal information of user where we have used RadPanelBar to categorize the information.  There are 6 RadPanelItem in RadPanelBar and user can save each panel information separately i.e. there is save button in every panel.  And again there is Save button at the bottom (It is not in rad panel bar) of the page to save all the information in the form.  HTML Tables are used to show controls/fields in each panel.  Now when we click on save button either it is individual panel save button or save button at the bottom to save all the information the controls on that panel or some other panel controls get distorted.  It not happens every time, but suddenly sometime on click of save button, controls of any other panel or same panel get distorted.  I have given proper width to table and columns of the table and to controls also.  Is it CSS ISSUE?  Please help me out.  Here is the code snippet for more understanding,
<telerik:RadPanelItem runat="server" Text="Host Country - Home Address" Value="HostAddr">
                                            <Items>
                                                <telerik:RadPanelItem runat="server" Value="HostHomeAddress">
                                                    <ItemTemplate>
                                                        <div class="text" style="background-color: #edf9fe">
                                                            <table cellpadding="5" cellspacing="0" border="0" width="730px">
                                                                <tr>
                                                                    <td align="right" colspan="3" style="text-align: right;" valign="middle">
                                                                        <asp:CheckBox ID="primary_addr_checkbox3" runat="server" OnClick="UnCheckOther(this)" />
                                                                        Mark as primary Mailing Address
                                                                    </td>
                                                                </tr>
                                                                <tr>
                                                                    <td colspan="3">
                                                                        <asp:Label ID="lblmsgHostCHA" runat="server" Font-Names="Verdana"></asp:Label>
                                                                    </td>
                                                                </tr>
                                                                <tr>
                                                                    <td align="left" valign="top" width="width250px">
                                                                          
                                                                    </td>
                                                                    <td align="right" valign="top">
                                                                        <asp:Button ID="btnSaveHostCHA" runat="server" CausesValidation="false" OnClick="btnSaveHostCHA_Click"
                                                                            OnClientClick="clearMsg()" Text="Save Changes" />
                                                                    </td>
                                                                    <td align="left" valign="top">
                                                                          
                                                                    </td>
                                                                </tr>
                                                                <tr>
                                                                    <td align="left" valign="top" width="width250px">
                                                                        <asp:Label ID="lblHostHomeCountry" runat="server" AssociatedControlID="ddlHostHomeCountry"
                                                                            Font-Names="Verdana" ForeColor="#696969" Text="Country"></asp:Label>
                                                                    </td>
                                                                    <td align="left" valign="top">
                                                                        <asp:DropDownList ID="ddlHostHomeCountry" runat="server" AutoPostBack="true" DataTextField="Name"
                                                                            DataValueField="ID" Font-Names="Verdana" OnSelectedIndexChanged="ddlHostHomeCountry_SelectedIndexChanged"
                                                                            Width="200px">
                                                                        </asp:DropDownList>
                                                                    </td>
                                                                    <td align="left" valign="top">
                                                                          
                                                                    </td>
                                                                </tr>
                                                                <tr>
                                                                    <td width="width250px">
                                                                        <asp:Label ID="lblHostHomeStreet1" runat="server" AssociatedControlID="txtHostHomeStreet1"
                                                                            Font-Names="Verdana" ForeColor="#696969" Text="Street 1"></asp:Label>
                                                                    </td>
                                                                    <td align="left" valign="top">
                                                                        <asp:TextBox ID="txtHostHomeStreet1" runat="server" CssClass="textInput" Font-Names="Verdana"
                                                                            MaxLength="50" Width="200px"></asp:TextBox>
                                                                    </td>
                                                                    <td align="left" valign="top">
                                                                          
                                                                    </td>
                                                                </tr>
                                                                <tr>
                                                                    <td align="left" valign="top" width="width250px">
                                                                        <asp:Label ID="lblHostHomeStreet2" runat="server" AssociatedControlID="txtHostHomeStreet2"
                                                                            Font-Names="Verdana" ForeColor="#696969" Text="Street 2"></asp:Label>
                                                                    </td>
                                                                    <td align="left" valign="top">
                                                                        <asp:TextBox ID="txtHostHomeStreet2" runat="server" CssClass="textInput" Font-Names="Verdana"
                                                                            MaxLength="50" Width="200px"></asp:TextBox>
                                                                    </td>
                                                                    <td align="left" valign="top">
                                                                          
                                                                    </td>
                                                                </tr>
                                                                <tr>
                                                                    <td align="left" valign="top" width="width250px">
                                                                        <asp:Label ID="lblHostHomeCity" runat="server" AssociatedControlID="txtHostHomeCity"
                                                                            Font-Names="Verdana" ForeColor="#696969" Text="City"></asp:Label>
                                                                    </td>
                                                                    <td align="left" valign="top">
                                                                        <asp:TextBox ID="txtHostHomeCity" runat="server" CssClass="textInput" Font-Names="Verdana"
                                                                            MaxLength="50" Width="200px"></asp:TextBox>
                                                                    </td>
                                                                    <td align="left" valign="top">
                                                                          
                                                                    </td>
                                                                </tr>
                                                                <tr>
                                                                    <td align="left" valign="top" width="width250px">
                                                                        <asp:Label ID="lblHostHomeState" runat="server" AssociatedControlID="ddlHostHomeState"
                                                                            Font-Names="Verdana" ForeColor="#696969" Text="State/Province"></asp:Label>
                                                                    </td>
                                                                    <td align="left" valign="top">
                                                                        <asp:DropDownList ID="ddlHostHomeState" runat="server" DataTextField="Name" DataValueField="StateProvinceID"
                                                                            Font-Names="Verdana" Width="200px">
                                                                        </asp:DropDownList>
                                                                    </td>
                                                                    <td align="left" valign="top">
                                                                          
                                                                    </td>
                                                                </tr>
                                                                <tr>
                                                                    <td align="left" valign="top" width="width250px">
                                                                        <asp:Label ID="lblHostHomeZip" runat="server" AssociatedControlID="txtHostHomeZip"
                                                                            Font-Names="Verdana" ForeColor="#696969" Text="Zip/Postal Code"></asp:Label>
                                                                    </td>
                                                                    <td align="left" valign="top">
                                                                        <asp:TextBox ID="txtHostHomeZip" runat="server" CssClass="textInput" Font-Names="Verdana"
                                                                            MaxLength="20" Width="200px"></asp:TextBox>
                                                                    </td>
                                                                    <td align="left" valign="top">
                                                                          
                                                                    </td>
                                                                </tr>
                                                            </table>
                                                            <br />
                                                        </div>
                                                    </ItemTemplate>
                                                </telerik:RadPanelItem>
                                            </Items>
                                        </telerik:RadPanelItem>


Thank you in advance.
Akshay
Top achievements
Rank 1
 asked on 30 Nov 2012
1 answer
129 views
Hi

I am creating RadScheduler in web part sharepoint 2010. But it not display same in project.

You can see my error in picture.
 
Can you provide me with some help please?

Thanks.
Plamen
Telerik team
 answered on 30 Nov 2012
2 answers
280 views
Hi This is the code for my Grid view As you know there is no RowCommand on RadGrid that why I need some help on how to convert all this code to RadGrid Code

  1.         protected void gv_Movie_RowCommand(object sender, GridViewCommandEventArgs e)
  2.         {
  3.             //get the row number of the selected row
  4.     // The error is at line 5
  5.             int rowNo = int.Parse(e.CommandArgument.ToString());
  6.             //get the selected row
  7.             GridViewRow row = gv_movie.Rows[rowNo];
  8.             //Get movie ID, which is on the 1st column of the gridview
  9.             string movieID = row.Cells[0].Text;
  10.             if (e.CommandName == "Select")
  11.             {
  12.                 Response.Redirect("");
  13.             }
  14.             else if (e.CommandName == "Update")
  15.             {
  16.                 Response.Redirect("");
  17.             }
  18.         }
Shinu
Top achievements
Rank 2
 answered on 30 Nov 2012
3 answers
113 views
I'm using a RadGrid to insert/edit records.  I'm using the FormTemplate.  The problem I'm experiencing is that when you click on the Add A New Record button on the grid it doesn't expand to show the form template.  Instead this error bubbles up:  'Telerik.Web.UI.GridInsertionObject' does not contain a property with the name 'Address'.

I'm using an object datasource to populate the grid and do inserts and updates.  Here's the data object I'm using:

public class Person : BusinessBase<Person>, IPerson, IAggregateRoot
{
    public User.User Owner { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public string FullName
    {
        get { return LastName + ", " + FirstName; }
    }
    public DateTime BirthDate { get; set; }
    public Address.Address Address { get; set; }
    public IList<Item.Item> Items { get; set; }
 
    protected override void validate()
    {
         
    }
}

public class Address : BusinessBase<Address>, IAddress, IAggregateRoot
{
    public string Street { get; set; }
    public string City { get; set; }
    public string State { get; set; }
    public string ZipCode { get; set; }
    protected override void validate()
    {
         
    }
}


And here's the form template I created for it.

            <EditFormSettings EditFormType="Template" InsertCaption="New Person">
                <FormTemplate>
                    <div id="PersonDiv" >
                        <table>
                            <tr>
                                <td>
                                    First Name:
                                </td>
                                <td>
                                    <telerik:RadTextBox runat="server" ID="txtFirstName" MaxLength="50" Text='<%# Bind("FirstName") %>' />
                                    <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtFirstName" ErrorMessage="A first name is required" ValidationGroup="vgPerson" />
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    Last Name:
                                </td>
                                <td>
                                    <telerik:RadTextBox runat="server" ID="txtLastName" MaxLength="50" Text='<%# Bind("LastName") %>' />
                                    <asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server" ControlToValidate="txtLastName" ErrorMessage="A last name is required" ValidationGroup="vgPerson" />
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    Use your address:
                                </td>
                                <td>
                                    <telerik:RadButton ToggleType="CheckBox" runat="server" ID="cbUseYourAddress" />
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    Street:
                                </td>
                                <td>
                                    <telerik:RadTextBox runat="server" ID="txtStreet" MaxLength="50" Text='<%# Bind("Address.Street") %>' />
                                    <asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="txtStreet" ErrorMessage="A street is required" ValidationGroup="vgPerson" />
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    City:
                                </td>
                                <td>
                                    <telerik:RadTextBox runat="server" ID="txtCity" MaxLength="50" Text='<%# Bind("Address.City") %>' />
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    State:
                                </td>
                                <td>
                                    <telerik:RadTextBox runat="server" ID="txtState" MaxLength="2" Text='<%# Bind("Address.State") %>' />
                                </td>
                            </tr>
                            <tr>
                                <td>
                                    Zip code:
                                </td>
                                <td>
                                    <telerik:RadTextBox runat="server" ID="txtZipCode" MaxLength="10" Text='<%# Bind("Address.ZipCode") %>' />
                                </td>
                            </tr>
<%--                            <tr>
                                <td>
                                    Birth date:
                                </td>
                                <td>
                                    <telerik:RadDatePicker ID="dpBirthDate" runat="server" DbSelectedDate='<%# Bind("BirthDate") %>' />
                                </td>
                            </tr>--%>
                            <tr>
                                <td colspan="2">
                                    <asp:Button ID="btnUpdate" Text='<%# (Container is GridEditFormInsertItem) ? "Insert" : "Update" %>'
                                                runat="server" CommandName='<%# (Container is GridEditFormInsertItem) ? "PerformInsert" : "Update" %>' ValidationGroup="vgPerson" />
                                    <asp:Button ID="btnCancel" Text="Cancel" runat="server" CausesValidation="False"
                                                CommandName="Cancel" ValidationGroup="vgPerson" />
                                </td>
                            </tr>
                        </table>
                    </div>
                    <asp:ValidationSummary ID="ValidationSummary1" runat="server" ValidationGroup="vgPerson" ShowMessageBox="True" ShowSummary="False" />
                </FormTemplate>           

When I'm referencing the address information in the Bind I have to use 'Address.Street' in order to get to the street field of the Address object.  Same format for the other fields in the address object.  It would seem the form template doesn't like that.  Any suggestions would be very much appreciated.

Jayesh Goyani
Top achievements
Rank 2
 answered on 30 Nov 2012
3 answers
213 views
How do I pre-expand the grid to show the DetailsTable child items by default and also have them in edit mode as well?

This doesn't work as it obviously places the parent rows in Edit Mode:

protected void rgUnits_PreRender(object sender, EventArgs e)
        {
            for (int i = 0; i < rgUnits.MasterTableView.PageSize; i++)
            {
                rgUnits.EditIndexes.Add(i);
            }

            rgUnits.Rebind();
        }

<MasterTableView  ...
<DetailTables>
 <telerik:GridTableView...

I need it to be pre-expanded and in edit mode for the child rows.
Shinu
Top achievements
Rank 2
 answered on 30 Nov 2012
1 answer
89 views
I have a radgrid which each row has a detail grid.
I am making the grid programmatically.

I have these set :
RadGrid1.AutoGenerateHierarchy = True
RadGrid1.MasterTableView.AutoGenerateColumns = True

With the above setting I can remove columns from master table using, 
Protected Sub RadGrid1_PreRender(sender As Object, e As EventArgs)
    RadGrid1.MasterTableView.GetColumn("ID").Visible = False
End Sub

However, I cannot find a way to do this (or something similar) for the Hierarchy created tables.

Any Suggestions?
Jayesh Goyani
Top achievements
Rank 2
 answered on 30 Nov 2012
1 answer
186 views
Hi,

I am trying to get the edited value from RadTextBox which is there in the EditFormSettings in RadGrid.
FileName is Transaction.ascx. Below is the RadGrid. EditFormSettings is highlighted in Bold-itallic.

<telerik:RadGrid ID="grdPaymentHistory" runat="server" AutoGenerateColumns="False"  

CssClass="Grid" Width="800px" Height="180" AllowFilteringByColumn="False" Skin="Windows7" OnNeedDataSource="grdPaymentHistory_NeedsDataSource" AllowSorting="True" DataKeyNames="FinancialTransactionId"  OnItemCommand="grdPaymentHistory_OnItemCommand" OnItemDataBound="grdPaymentHistory_ItemDataBound" OnInsertCommand="grdPaymentHistory_InsertCommand" OnUpdateCommand="grdPaymentHistory_UpdateCommand" OnCustomAggregate="grdPaymentHistory_CustomAggregate" ShowFooter="True"> 

 

<MasterTableView Width="100%" EditMode="EditForms"> 
<RowIndicatorColumn>  <HeaderStyle Width="15px"></HeaderStyle>  </RowIndicatorColumn>

 <ExpandCollapseColumn>

 <HeaderStyle Width="15px"></HeaderStyle>  

</ExpandCollapseColumn>  <Columns>

 <telerik:GridBoundColumn DataField="FinancialTransactionId" UniqueName="FinancialTransactionId"   

Visible="False" /> <telerik:GridBoundColumn HeaderText="Date" DataField="CreatedOn.LocalDateTime" SortExpression="CreatedOn.LocalDateTime"  UniqueName="CreatedOn.DateTime" DataFormatString="{0:MM/dd/yyyy hh:mm tt}" HeaderStyle-Width="110" />  <telerik:GridBoundColumn HeaderText="Transaction" DataField="TransactionType" SortExpression="TransactionType"  UniqueName="TransactionType" />

 

<telerik:GridBoundColumn HeaderText="Payment" DataField="PaymentType" UniqueName="PaymentType"  FilterControlWidth="40px" SortExpression="PaymentType" FooterText="Total:" />

 <telerik:GridBoundColumn HeaderText="Amount" DataField="Amount" UniqueName="Amount"

 SortExpression="Amount" DataFormatString="{0:C}" Aggregate="Custom">

 <ItemStyle HorizontalAlign="Right" />

 <FooterStyle HorizontalAlign="Right" />

 </telerik:GridBoundColumn>

 <telerik:GridEditCommandColumn UniqueName="EditRefundAmount" />

 <telerik:GridBoundColumn HeaderText="GL Acct" DataField="GLAccountId" UniqueName="GLAccountId"

 SortExpression="GLAccountId" />  

<telerik:GridBoundColumn HeaderText="Auth #" DataField="AuthorizationNumber" UniqueName="AuthorizationNumber"

 SortExpression="AuthorizationNumber" /> 

 

<telerik:GridBoundColumn HeaderText="ID" DataField="ProviderTransactionId" SortExpression="ProviderTransactionId" UniqueName="ProviderTransactionId" />

 <telerik:GridBoundColumn HeaderText="User" DataField="CreatedBy" SortExpression="CreatedBy"

 UniqueName="CreatedBy" />  

<telerik:GridBoundColumn HeaderText="Response" DataField="Response" SortExpression="Response"  UniqueName="Response" />  <telerik:GridButtonColumn ButtonType="PushButton" CommandName="Void" HeaderStyle-Width="56px"  DataTextFormatString="Void" HeaderText="Actions" UniqueName="Actions" ItemStyle-HorizontalAlign="Center" HeaderStyle-HorizontalAlign="Center" DataTextField="VoidButton" AndCurrentFilterFunction="NoFilter" Visible="True" />

 <telerik:GridTemplateColumn

<HeaderStyle Width="30px" /> <ItemTemplate>

 <asp:Image ID="imgReceipt" runat="server" ImageUrl="~/App_Themes/Default/images/receipt.png"

 ToolTip="View receipt details for printing and emailing" />

 </ItemTemplate>

 <FooterStyle HorizontalAlign="Right"></FooterStyle>  

</telerik:GridTemplateColumn>  </Columns<EditFormSettings EditFormType="Template" InsertCaption="Start Refund Transaction" CaptionFormatString="Edit Follow Up">  <FormTemplate

 

<table>  <tr>  <td >Enter Refund Amount &nbsp;&nbsp;&nbsp;</td

 

<td colspan="3"><asp:RadTextBox runat="server" ID="txtAmount" Text='<%# Eval("Amount") %>'></asp:RadTextBox></td

 

<td>&nbsp;&nbsp;&nbsp;<asp:Button runat="server" ID="btnRefund" Text="Refund" Width="75px" CommandName="Update" /></td>  </tr>  </table>

 </FormTemplate>

 </EditFormSettings

<NoRecordsTemplate> No Transactions Found</NoRecordsTemplate>  </MasterTableView>  <HeaderStyle CssClass="GridHeader" />  <FooterStyle CssClass="GridHeader" /> 

<GroupingSettings CaseSensitive="False" />

<ClientSettings AllowColumnsReorder="false" ReorderColumnsOnClient="True">

<Resizing AllowColumnResize="true" ResizeGridOnColumnResize="false" ClipCellContentOnResize="true" />

 <Scrolling AllowScroll="true" UseStaticHeaders="True" />

 

</ClientSettings

</telerik:RadGrid>
The update command event is as below:
 protected void grdPaymentHistory_UpdateCommand(object sender, GridCommandEventArgs e)
        {  

            //Get the GridEditableItem of the RadGrid
            GridEditableItem editedItem = e.Item as GridEditableItem;

            //Access the textbox from the edit form template and store the values in variables.
            if (editedItem != null)
            {
                var refundAmount = ((RadTextBox)editedItem.FindControl("txtAmount")).Text;
            }
        }



For example, in the txtAmount radtextbox, if the value is showin as 100 and then user is modifying it to 200, in above event, I am getting value as 100 instead of 200.

Please provide a solution in detail.

Thanks in advance.
Jayesh Goyani
Top achievements
Rank 2
 answered on 30 Nov 2012
4 answers
181 views
These might be a simple answers, however, getting to the question has been a tough road.

1. Like a few other AJAX controls, is RadScheduler not yet supported via a RenderPartial? I can successfully load the control in a regular view, however, with the same code and many alternate iterations, I can not successfully load it via RenderPartial. My intent is to load tab divs with renderpartial and the scheduler would be in one of those tabs.

2. I also have read I need to figure out how to post session variables via javascript in order to then access them in the provider class to include additional parameters - is this still the case?

And while I am at it...

3. Can I show an image in place of, or addition to,  the text of an appointment in the schedular view?

Even knowing the Yes/No to each of these questions will really help me refocus on how I implement the control.

Thanks much,
Brian
Chad
Top achievements
Rank 1
 answered on 30 Nov 2012
2 answers
91 views
I am doing inline edit  in radgrid

My Radgrid displays 10 rows.

When I edit the first row ,change the data and press 'enter' key. it saves the data perfectly

If I edit any row other than 1st  row. after changing the data  and press 'enter'  (not the save button) it closes the edit mode and data is not saved. It behaves as if 'enter' is cancelling the edit mode. And more over  it automatically opens the 1st row for edit

How can we make sure if 'enter' is pressed in edit mode save/update is triggered.

Please note that it works fine I click the save button, the problem I press 'enter' key  and happens only for other than 1st row

Following is my editcommand colum

<telerik:GridEditCommandColumn HeaderStyle-Width="60px" UniqueName="EditCommandColumn"

 

Visible="true" ButtonType="ImageButton" HeaderText="Edit">

</telerik:GridEditCommandColumn>

Hope I am clear  with my question.

Aprreciate your help.

Thanks

NVB
Top achievements
Rank 1
 answered on 30 Nov 2012
9 answers
262 views
Hi there, I'm encountering some problems in using Intellisense for client code.
My scenario is: OS=Vista, VS2008, Telerik.Web.UI version 2011.1.413.35

web.config httpHandlers:
<httpHandlers>
  <remove verb="*" path="*.asmx" />
  <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
  <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
  <add verb="GET,HEAD" path="ScriptResource.axd" validate="false" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
  <add path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" validate="false" />
  <add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" validate="false" />
  <add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" />
  <add path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" validate="false" />
  <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
</httpHandlers>

I'm using Master Page, so I've placed a RadScriptManager in the MasterPage
<body>
  <form id="form1" runat="server">
  <telerik:RadScriptManager ID="RadScriptManager1" runat="server" >
  </telerik:RadScriptManager>

Now, if I insert a script block in the master page, I have Intellisense with all the ajax library standard functions, like $find.
If I insert a script block in a content page, in intellisense I don't get the ajax library functions (just standard Javascript).
Same behavior if a substitute RadScriptManager with MS ScriptManager.

Then I've added the <scripts> section to the (Rad)ScriptManager, like this:
<body>
  <form id="form1" runat="server">
  <asp:ScriptManager ID="ScriptManager1" runat="server">
    <Scripts>
      <asp:ScriptReference Name="Telerik.Web.UI" Assembly="Telerik.Web.UI.Common.Core.js" />
    </Scripts>
  </asp:ScriptManager>
 In this case I don't get ajax library functions in Intellisense nowere (master page or content page).
The same if using RadScriptManager instead of MS ScriptManager.

Which is the right way to work with client intellisense with VS2008 ?

TIA
Ubaldo
Christopher Blickley
Top achievements
Rank 2
 answered on 29 Nov 2012
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?