Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8856479
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T14:21:57+00:00 2026-06-14T14:21:57+00:00

What I want to do is track the (top, left, width, height, zIndex) style

  • 0

What I want to do is track the (top, left, width, height, zIndex) style attributes. But since the element that holds these styles doesn’t exist until after third party code gets pulled in, i can’t do it the normal way.

Here’s what I’ve got thus far:

    my.Module = function (module) {
    return {
            top: ko.observable(200);,
            left: ko.observable(100);,
            width: ko.observable(100);,
            height: ko.observable(100);,
            zIndex: ko.observable(0);,
        };
    };

This would be the normal binding context:

<div data-bind="style:{width:width, top:top, left:left, height:height, zindex:zIndex}"></div>

But the third party stuff ends up wrapping the div i pass it within another, and this is something I cannot change. So instead I’ve started creating a custom bindinghandler:

 ko.bindingHandlers.Window = {
        init: function (element, valueAccessor) {
            var value = ko.utils.unwrapObservable(valueAccessor());

            //Do third party creation stuff here...

            ko.applyBindingsToNode(elemToActuallyWatch, {
                style: {
                    width: value.width() + 'px',
                    height: value.height() + 'px',
                    top: value.top() + 'px',
                    left: value.left() + 'px',
                    zIndex: value.zIndex()
                }
            });
        },

Now this applies the above styles to the appropriate div, but i still need the above values to change when both the data changes and when the element changes.

I feel like the ‘px’ that i have to tack on the ends shouldn’t be needed but that was the only way i could get them to apply.

Is there a way from this point on, that lets say I’m using jqueryUI draggable and resizable, and a user moves/resizes the element that the values will automatically update the viewmodel data? Of course a non jquery specific answer would be best.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T14:21:58+00:00Added an answer on June 14, 2026 at 2:21 pm

    style is a one-way binding, from model to view. It won’t update the model from the view. You’ll probably need to use the resize option and update the model from there.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to give my UIButton's custom subclasses so that each button keeps track
I have a process that I do not want to track if something is
We want to track the time taken by a web service call between a
I want to track incoming traffic to a website from campaigns. A campain link
I want to track a person's movement on mapview in my iphone. I am
i have a table where i want to track time so a valid entry
I am storing Integer objects representing an index of objects I want to track.
Here is my problem, I want to track if user is online or offline
have a picture in my server named /images/pic.jpg . I want to track ip
I'm creating an API for my Rails app, and I want to track how

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.