Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
3k views

Client side Callback in GWT

I'm trying to create a logger for a GWT application as an exercise to evaluate GWT. What I specifically want to do is have it so that I can post messages to a client side label at any point from the ...
2
votes
2answers
148 views

Removing cookies with the same name but different paths

I need to delete clientside cookies with the same name but with different paths. What is the best way to do this in javascript.
2
votes
2answers
424 views

JQuery/ ASP.Net - How to Maintain the State of Hidden UI Elements across Postbacks?

I'm working on a webform with various controls. Depending on user-input I show/hide (using JQuery's show()/hide() functions) bits of the GUI. However if the form is posted-back and fails validation, I ...
2
votes
1answer
213 views

Html5 says that values are undefined

This is in a chrome extension and lets say I have this code: var DB = openDatabase('CMPDB', '1.0', 'Database for CMP', 4 * 1024 * 1024); LoadFromDB(); function LoadFromDB() { ...
2
votes
6answers
68 views

What's wrong in my JavaScript code?

I can't figure out what's wrong. var CarObj = function(passengers, maxLoad, wheels, doors, maxSpeed) { this.passengers = passengers; this.maxLoad = maxLoad; this.wheels = wheels; ...
2
votes
4answers
440 views

how can i create a file on client side by JavaScript?

i need to create a temp file to store user settings on the client side .it it possible to create a simple log file by JavaScript ?
2
votes
4answers
10k views

Print directly from browser without print popup window

As it said in the subject I've to create a feature for a web-based application that will allow users to send print directly without prompting any dialog boxe just make the print i.e click and print, ...
2
votes
5answers
177 views

What would cause ASP.NET validators not to trigger on a deployed site?

Locally it works, I know its the "it works on my machine" syndrome but i cant see why. Simple web page, fields, required field validators, such as <asp:textbox id="tbEmail" runat="server" ...
1
vote
5answers
55 views

How can you use php in a javascript function

<html> <?php $num = 1; echo $num; ?> <input type="button" name="lol" value="Click to increment" onclick="Inc()" /> ...
1
vote
1answer
195 views

Customize Html.ValidationMessageFor doesn't work in client side

I am working on mvc3 application, i have created a custom validationMessage to validate a simple field. This custom validationMessage only show an div with title and message instead of the default ...
1
vote
2answers
35 views

triggering a portion of a php script through a user action without going into a new form?

I just started learning PHP and was wondering if there is a way to trigger a portion (a function really) of a php script when a user clicks on a link/button without redirecting the user to a new php ...
1
vote
0answers
102 views

library for clientside vcard creation

I would like my site visitors to be able to create a vCard, with all supported properties, notes, and some custom properties. Similar to what this website called vacrdmaker offers. I have found a php ...
1
vote
2answers
131 views

which has better and smooth API for DOM manipulation? Chrome or firefox?

I am developing a web application which will collect, store and display the user feedback of google search results. For the user interface in client side, I need to hack the google's search page on ...
1
vote
2answers
530 views

Client side validation of list in ASP.Net MVC 2

I've used stackoverflow many a time to solve my problems (code related!) but this is the first time I've needed to post a question cause I cannot work out whats wrong. When I enable client side ...
1
vote
0answers
56 views

Excel Interop - Alter HTML imagedata Source From Client Side

I've created a report from Excel using PublishObjects.Add using Excel Interop, and I output the data without any problems. My question is - Is it possible to access the v:imagedata tag from the ...
1
vote
1answer
527 views

Server side control hidden - possible to read values client side?

A quick question. I've got two textboxes running server side and have their visibility turned off. I'm using a couple of ASP.NET controls which require the textboxes to exist. However, I am filling ...
1
vote
1answer
1k views

Implementing custom logging of WCF messages client-side

A collegue of mine needs to implement custom logging of WCF messages, for debugging purposes, but also for traceability (logged data will be saved for future reference and verification). Examples ...
1
vote
3answers
711 views

Client Side Validation for different control events

I have a custom validator attached to a textbox control as follows <td align="center" width="10px"> <asp:CustomValidator ID="validateDateText" ControlToValidate="dateTextBox" ...
1
vote
1answer
483 views

Reporting Services Client side

I need to compose a report using multiple subreports, "chained" together at runtime in a C# Forms project. The subreports each represent a subtest of a product, and the data needs special formatting ...
0
votes
2answers
62 views

how to call javascript function from client side on anchor click

I have javascript function sample('textValue') and have to call at server side on anchor click. I tried below code string text="xyz"; anchor.Attributes.Add("onclick","javascript:sample('"+text+"'); ...
0
votes
1answer
24 views

Struts2 client side validation with i18n

I have to perform some client side validation. The error messages should need to appear based on client language. Currently i have hardcoded the messages in the javascript code. How do i access the ...
0
votes
2answers
50 views

url callback function not working

How can I use the callback function properly cause it's not working. I want to retrieve my json values from the server to the client side. For starters I tried this to see if its working. sample ...
0
votes
1answer
8 views

Header checkbox Selection by checking all checkboxes

I have a radgrid in which on header checkbox and in itemtemplate few checkboxs . I want header checkbox to be selected when all the checkboxs are checked individually checked
0
votes
0answers
16 views

jQuery clientside translations

Would it be an good idea to translate everything received from the server side to translate it with an array? For example html server response: when jQuery should translate this into wanneer, ...
0
votes
1answer
31 views

Includes without local server?

I'm making a website, and I like testing everything offline instead of having to upload files with every change I make. The problem is I can't use includes, so when I do upload, I'm going to have to ...
0
votes
1answer
105 views

MVC3 Want Clientside Validation to trigger for two fields when one of the two is modified

I am creating an MVC3 website and added a couple of security questions to the "My MVC Application" Registration routine in the form of dropdown boxes. I created a custom validator to check the second ...
0
votes
0answers
14 views

Clientside Validation triggered by events from another field [closed]

I have two security question select lists. I have a validator on the second one that checks to see the same item is not selected as the first. If I do select the same item, the client validator is ...
0
votes
0answers
115 views

MVC Framework: Client-Side or Server-Side or Both? [closed]

Problem Context: I am working on a large-scale web-based application. The main features of the application would be: 1. Cater to thousands of users, simultaneoulsy. 2. Real-time and Collaborative in ...
0
votes
0answers
79 views

use sqlite of smartphone with php

I'm asked to write a web app which has to be rendered on lower versions of blackberry( < 5). I've to send the request to URL to get information and store it on device and use the same information ...
0
votes
2answers
305 views

why is it that i cannot sort my grid in jqgrid everytime i clicked the column header?

good day, i was really confused why my program using jqgrid won't sort (descending) everytime i clicked the column header? is there anyone can help me fix this?.... i tried creating a program where i ...
0
votes
1answer
251 views

ASP.Net RadioButtonList in a Group with JQuery

I've got some radiobuttons in my webform, they are all part of the same group <asp:RadioButton runat="server" ID="rbMonFriWkends" GroupName="HoursWkSelect" CssClass="ChbxToggler ...
0
votes
2answers
290 views

Image src (via javascript) inconsistency between chrome/firefox

Heya, so I'm running into a weird bug/edgecase. Check out the following code: var i = new Image(); i.src = ...
0
votes
3answers
90 views

Autocomplete in server or client?

I have a winform that allows a user to input value in it's full form and in shortened form (think gmail - that allows to login with username and with username@gmail.com). In the server, I have a ...
0
votes
1answer
155 views

How to fix HTML from WCF-webservice in AJAX Client Side-templates

I have a problem with my templates, when I return HTML, it's encoded by default, and I cannot find a way to "fix" it. I want to replace NewLines (\u000a) with a straight <br />, but I always ...
0
votes
3answers
71 views

Impact of web platform on GUI

Web based systems (Client Side GUI only) are known to be platform independent, But, are they development-platform independent too?? To the best i know, Client Side GUI will always be built using HTML ...
0
votes
2answers
43 views

Discussion - Allowing / blocking user access to pages / Client Side Validation (Client Side Only!) - Javascript / Jquery

TLDR Using plain HTML / Javascript (Client Side) I want to prevent viewing of certain pages. The user will have to type a username and password and depending on that they get access to different ...
0
votes
2answers
601 views

Client Side javascript call from ASP control throws “Too many characters in character literal” error!

I have a javascript to enable text boxes when called, I want to trigger this code when a user picks value "Custom" from a dropdownlist, so that I can display/Hide these new textboxes. ...
0
votes
1answer
1k views

EnableClientValidation on Master Page

I'm trying out ASP.NET MVC 2 Preview and when I use client side validation it all works if the following: <% Html.EnableClientValidation() %> Is used on a content page. If it is on a Master Page ...
0
votes
3answers
2k views

Ruby: client-side or server-side?

Is Ruby client- or server-side?
0
votes
2answers
1k views

Asp.Net Rating Control

I can't get the ASP.NET Rating control's selected value(Current Value) in javascript. I am using Rating control in datagrid and do you know how I can get the CurrentValue of ASP.NET Rating in ...
0
votes
4answers
4k views

Is a Session ID generated on the Server-side or Client-side?

This web page http://www.w3schools.com/ASP/prop_sessionid.asp states that a session ID is generated on the ServerSide. If this is the case, then how does a server know it's still the same client on ...