Tagged Questions
0
votes
1answer
54 views
How do I return the value of tableHeading above a tableData in seaside?
In raw jQuery you can use
var $th = $td.closest('table').find('th').eq($td.index());
But, how do I return $th to seaside so I can then use it as a string for whatever rending I want?
Example.
val ...
4
votes
1answer
143 views
Updating embeded components in seaside, without refreshing the whole page
I have a component (ItemTree) which has 3 embeded components. The first (ItemTreeList) is a list of items to select. The second (ItemGIDE) shows properties for the item you selected.
How do I tell ...
1
vote
1answer
142 views
onClick button: callback not executed
I'm wondering why the doRemoveObject method is not being executed when the button is clicked.
(html button)
id: 'objectRemoveButton';
bePush;
onClick: (html scriptaculous request
...
0
votes
2answers
197 views
Seaside: Execute JavaScript method via AJAX
I have two Ajax calls. I need to make sure that a JS function is executed between these two calls.
Is it possible to trigger the execution of a client-side JS function via the AJAX response? Or how ...
2
votes
1answer
300 views
Help in ajaxifying Seaside-App (need template or minimal example)
I am having trouble ajaxifying our new Seaside-App. The objective of the App is to show contract-data in a cascading view (in concept like a tree but visually just components inside components): on ...
4
votes
2answers
139 views
Seaside: list losing its content on update
This one is really simple. I've got a <select> and I want to update some internal state based on the selection. No need to redisplay anything. The problem is that after the selection and the ...
7
votes
1answer
724 views
How to access the jQuery event object in a Seaside callback
Basically, I want to translate the following into Seaside Smalltalk:
$(".myDiv").bind('click', function(e) {
console.log(e);
});
Besides that I don't want to console.log the event, but access ...
2
votes
1answer
391 views
Why isn't my serverside callback occuring when I use 'jQuery ajax' in seaside 2.9?
I'm trying to do something like this in seaside 2.9
html button
onClick: (html jQuery ajax
serialize: (html jQuery this);
script: [:s | s << (s jQuery id: stratId) append: [html text: ...