how to construct a zend_dojo xhrPost request
hello all, im new in dojo please how do i construct an XhrPost request in zend? thanks. ...
hello all, im new in dojo please how do i construct an XhrPost request in zend? thanks. ...
hello friends.. I have a pie chart displayed on the page with dojo stuff. on mouse over on pie chart I need to display some text can any body tell me how to do this? Thanks ...
Hello, I have some Dijit Tabs, and in those tabs I have some Dojo Text boxes and Fields. Some of my Dojo Tabs load when the page is loaded, and some load only when clicked on. My issue is that I cant get the Tabs that load only when clicked, to work with the Dojo modules. Its hard to explain, so I made a simple example to help. I h...
I have made a default form using Zend Framework which is working well. i need to use any kind of ajax in the form may be dojo which comes with Zend. I dono how to use these form elements and how to call them. like when i click on a radio button called yes,open an textbox or change data. any example ? ...
Hello, I try to validate the modified fields of a dojo grid. If the validation fails, I call store.revert() and break out of the store fetch loop. But this doesn't seem to be working. In FF I get this error: 'assertion failed in ItemFileWriteStore'. Any help is appreciated. Thanks. ...
hii i am new to zend . i have written a form using zend . like under forms i have created the forms and a simple one like $specific_consultant = new Zend_Form_Element_Radio('Specific_consultant'); $specific_consultant->setLabel('Specific Consultant') ->addMultiOptions(array( 'Yes' => 'Yes', ...
Hello, I am stuck again. I am trying to load some javascript (a number spinner) into a Dojo content pane. And I get a nice ugley message: Message: HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917) Here is my code. Any ideas? <html> <head> <script type="text/javascript" ...
I am new to dojo . i se ethis term like dijit . what is this actually . ...
Hello friends this is the code I am using to update the pie chart on fly.. dojo.require("dojox.charting.Chart2D"); dojo.require("dojox.charting.plot2d.Pie"); dojo.require("dojox.charting.action2d.Highlight"); dojo.require("dojox.charting.themes.Wetland"); dojo.require("dojox.charting.action2d.MoveSlice"); dojo....
I have a dijit.editor on my page and when I click on a button I want the contents inside my editor. It should be fairly simple, but I've stumbled upon it for now. Never mind, i solved it. dojo.require("dijit.Editor"); dojo.addOnLoad(function() { var editor = dijit.byId("myEditor"); var btn1 = dojo.byId("Button1"); ...
helo friends I need to add the lables for x and y axis in dojo grapsh dojo.addOnLoad(function() { var dc = dojox.charting; var c = new dojox.charting.Chart2D("test3"); c.setTheme(dojox.charting.themes.Wetland); c.addPlot("default", { type: "StackedAreas", ten...
So, I have a ServiceStore in dojo where the response has escape characters like so: { name:"\"Fred\" and \"Wilma\""} In my deferred callback for this service, the JSON string coming in looks like: { name:""Fred" and "Wilma""} which causes dojo.toJson(results) to blow up. The string coming back from the server is correct (Have ...
I am stuck with using Dojo to accomplish this. Basically what I am trying to implement is an AJAX feature where a user adds a comment to a blog post and it is immediately displayed. So I'm to the point where I have the dojo.xhrPost receiving a chunk of html that needs to be added to the list of comments. Now I want to slowly fade in the...
I'm trying to select the text from the name attribute of the anchor element of the last Comment div in the Comments div (i.e. comment_3037) How can I select it? Here's my html: <div id="Comments"> <div class="Comment"><!-- last "Comment" element in the div --> <a name="comment_3037"></a> <a href=""><img src=""></a> ...
I'm trying to animate a dot from one point to another on a map. Right now I have the following code: function animate(){ //animation var pt = oldLoc; for(i = 0; i < 1000; i++){ pt.y += 5 pt.x += 5 graphic.setGeometry(pt); //sets the new point coordinate...
Hello, I copied an example from the dojo site using Borderlayout. However, when I load in the browser , the entire data is shown for all the section . Then after a few second the content is refersh and the data is displayed correctly. here is code that i copied . Thanks for your help <head> <link rel="stylesheet" type="text/...
Hello Friends.. I have a sliced pie chart.. I need to implement Click event on each slice to go other page.. Can any body tel me how to do this kind of clicks on the pie chart using dojo thanks ...
I want to be able to provide a button to my users to just print a particular portion of my dojo/dijit application. There seems to be a general lack of documentation and examples when it comes to printing. For example, I have a specific dijit.layout.ContentPane that contains the content that I would like to print, but I wouldn't want to...
dojo.addOnLoad( function() { attach on click to id="textDiv" dojo.query('#Specific_consultant-Yes').onclick( function(evt) { // document.getElementById("Consultants").style.visibility = "hidden"; dojo.style.setVisibility('Consultants', false); //alert('hai'); }); }); I tried to write code like this in zend in views page . ...
hello friends I have bar grpah and pie chart using dojo graphs.. I need to keep the click event on each bar and pie chart slice to get the value of that perticular slice or bar? can any body tell me how to do this Thanks ...